MINA Function

MINA Function

MINA Function

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.

ExcelClash Team
PUBLISHED

Summary

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.

Purpose

Find the smallest value, including logical values

Useful when TRUE/FALSE results are part of the meaning of the range.

Return Value

Single minimum value

Returns the smallest recognized result after Excel applies MINA's mixed-data rules.

Syntax

=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.

Arguments

  • value1 - The first value, range, or array to evaluate.
  • value2, ... - Additional values, ranges, or arrays to include.

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 vs Other Functions

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.

Using the MINA Function

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.

  • Use MINA when FALSE should count as a meaningful low value.
  • Use MIN instead when only numeric measurements should determine the minimum.
  • Review mixed ranges carefully so logical results do not change the answer unexpectedly.

Example 1 - FALSE Becomes the Minimum

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)
Check Answer
Challenge #1
Target: Sheet1!F1
Level 1: Mixed Minimum

Find the smallest value in B1:B10, where the range may include TRUE or FALSE results. Formula: =MINA(B1:B10).

Example 2 - Text Notes Do Not Become Zero in a Referenced 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)
Check Answer
Challenge #2
Target: Sheet1!F2
Level 2: Compare FALSE and Numbers

Find the smallest value in A1:A3 when the range contains FALSE, TRUE, and 0.5. Formula: =MINA(A1:A3).

Example 3 - Compare Partial Scores with Logical Status

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)
Check Answer
Challenge #3
Target: Sheet1!F3
Level 3: Notes Mixed with Values

Find the minimum in C1:C10 when the range contains text notes and numbers. Formula: =MINA(C1:C10).

Example 4 - Review a Mixed Status 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)
Check Answer
Challenge #4
Target: Sheet1!F4
Level 4: Status and Score Check

Find the smallest value in B1:B10 when the range includes numeric scores and logical status results. Formula: =MINA(B1:B10).

Conclusion Recap

  • Main job: MINA returns the minimum while including logical values.
  • Logical rule: FALSE evaluates to 0 and TRUE evaluates to 1.
  • Important nuance: Text typed directly as an argument is treated as 0, but text inside a referenced range is ignored.
  • Best use: Mixed ranges where logical test results should influence the minimum.
Tactical Arena
Select Scenario:
Share MINA Function!

Tell your friends about this post

Discussion

ExcelClash is an interactive platform designed to level up your Excel skills through real-world exercises and challenges. Sharpen your logic, solve real spreadsheet problems, and learn faster.

© 2026 ExcelClash, Inc. All rights reserved.