- What's the difference between MINA and MIN?
- MIN ignores text and logical values, returning only the numeric minimum. MINA includes them—text becomes 0, TRUE becomes 1, FALSE becomes 0. Use MIN for purely numeric data and MINA when your range mixes different types.
- Does MINA include empty cells in its calculation?
- No, MINA skips empty cells entirely. It only considers cells with actual values: numbers, text (treated as 0), and logical values (TRUE/FALSE).
- Can MINA return 0 when there are no actual zeros in my data?
- Yes. If your range contains text values, MINA treats them as 0, which becomes the minimum result. If you see an unexpected 0, check whether your range includes text that should be excluded.
- How do I find the minimum for only a specific category or criteria?
- Use MINIFS, which adds criteria filtering. For example, =MINIFS(Actual, Category, "Groceries") returns the minimum actual spending only for groceries, without scanning unrelated rows.