Mina
MINA Function¶
The MINA function in Excel returns the smallest value in a set of values, including logical values and text
representations of numbers. Unlike the MIN function, MINA evaluates TRUE as 1, FALSE as 0, and text
representations of numbers as numbers.
Key Features of MINA:¶
- It includes logical values and text in its evaluation:
TRUEis treated as1.FALSEis treated as0.- Text values that cannot be interpreted as numbers are treated as
0.
- Numeric values are evaluated as they are.
- Empty cells are ignored.
This function is particularly useful when you want to find the minimum value in a dataset that includes logical values or mixed data types.
Syntax:¶
- value1, [value2], ...: These are the values, references, or ranges you want to find the minimum for. The
value1argument is required, while subsequent arguments are optional.
Examples:¶
-
=MINA(10, 20, 30, TRUE)Returns the smallest value among10, 20, 30and includesTRUEas1in the evaluation. Result:1 -
=MINA(5, 10, FALSE, "Hello")ConsidersFALSEas0and"Hello"as0, then returns the smallest value. Result:0 -
=MINA(A1:A5)Returns the smallest value in the rangeA1:A5, including logical values or text representations if present.
Notes:¶
- The
MINAfunction extends the traditionalMINby providing support for logical and text values, making it useful for mixed data types. - If no numeric, logical, or text values are found,
MINAreturns0. - Error values within the arguments will cause the function to return an error.
MINAdiffers fromMINin thatMINignores logical values and text, whileMINAincludes them in the evaluation.
Tip: Use
MINAinstead ofMINwhen your data contains logical values or text that you want to factor into finding the minimum value. For the corresponding maximum function, seeMAXA.