
Find the smallest value while including logical values such as TRUE and FALSE. MINA is useful when a range mixes numbers with logical test results.
The Excel MINA function returns the smallest value in a set while also taking logical values into account. That makes it the counterpart to MAXA. In MINA, FALSE is treated as 0 and TRUE is treated as 1, so logical test results can change the minimum.
MINA is helpful when the worksheet mixes numeric values with logical states and you want both types to remain part of the comparison. It is especially relevant in control sheets, progress tracking, and decision models where a FALSE result should count as a real low point rather than being ignored.
MINA is useful when the workbook should treat logical values and mixed content as part of the minimum instead of ignoring them. That gives it a different role from MIN in models where TRUE, FALSE, or text placeholders carry meaningful structure.
Useful when TRUE/FALSE results are part of the meaning of the range.
Returns the smallest recognized result after Excel applies MINA's mixed-data rules.
=MINA(value1, [value2], ...)
You can supply individual arguments, arrays, or range references. For example, =MINA(A1:A10) checks the range and returns the smallest value that MINA recognizes.
As with MAXA, the key detail is input handling. Logical values are included. Text typed directly as an argument is treated as 0, but text inside a referenced range is ignored rather than converted to a numeric zero.
MINA is the right tool only when the logical layer of the data should affect the result.
| Function | Treatment of Logical Values | Use When |
|---|---|---|
MINA |
Includes TRUE as 1 and FALSE as 0 | Your range contains logical results that should affect the minimum |
MIN |
Ignores logical values in references | You want the minimum from numeric values only |
MINIFS |
Returns the smallest number meeting criteria | You need a conditional minimum from a numeric range |
MAXA |
Uses the same mixed-data rules but returns the maximum | You need the ceiling rather than the floor of the same type of data |
If the range contains positive decimals and also includes FALSE, MINA often returns 0 because FALSE evaluates to 0. That is usually the clearest sign that MINA, not MIN, is controlling the result.
MINA is useful when a model combines numeric progress with pass/fail or yes/no states. A range such as 0.45, 0.80, and FALSE contains both magnitudes and a logical failure. MINA treats that FALSE as 0, which means the formula surfaces the failed state as the minimum.
This behavior can be valuable in review sheets where a failed condition should dominate the analysis. If a range contains healthy percentages but one critical test is FALSE, returning 0 may be exactly what you want because it shows that the range includes a failing element.
But the same behavior can also be undesirable if the goal is strictly numeric analysis. In that case, MIN is usually better because it ignores logical values in references. The decision is not about which function is better overall; it is about whether logical states belong in the comparison.
This range contains 0.85, FALSE, and 0.45. MINA treats FALSE as 0, so the result is 0. That is the core behavior of the function and the main reason it can differ from MIN.
=MINA(B1:B3)
Find the smallest value in the mixed range.
This example contains a text note, 1, and 5. Because the text cell is part of a referenced range, MINA ignores it and compares the numeric values that remain. The result is therefore 1, not 0.
=MINA(B1:B3)
Find the smallest value when logical results are included.
The values are 0.95, TRUE, and FALSE. MINA converts those logical results to 1 and 0, so the formula returns 0. In a status review, that makes the failed condition visible as the minimum of the range.
=MINA(B1:B3)
Find the minimum in the notes-and-values range.
This pattern appears in many operational sheets: one result is a ratio, another is a logical check, and a third is an alternate score. MINA applies one set of rules to all of them and returns the smallest recognized value.
=MINA(B1:B3)
Find the smallest value in the score-and-status list.
MINA works like MIN, but it keeps logical values in the calculation. This lesson showed why that changes the answer: FALSE becomes 0, so a failed logical check can become the minimum even when all the visible numbers are above zero.
That makes MINA useful in sheets where a logical failure should show up as the lowest result. But if the goal is only numeric analysis, MIN is usually better because it ignores those logical values instead of letting them drive the minimum.
MINA returns the minimum while including logical values.Tell your friends about this post