The MINA function in Excel is a valuable tool for analyzing a set of data by identifying the smallest value present. Unlike the standard MIN function, MINA takes into account not only numerical values but also text representations of numbers and logical values (TRUE and FALSE). This makes it particularly useful for datasets that may contain mixed types of data, allowing users to extract meaningful insights effectively.
Syntax
MINA(value1, [value2], ...)
- value1: The first argument for comparison. This can be a number, logical value, or text representing a number.
- value2: Optional. Additional values to consider in the calculation. Multiple values can be included, separated by commas.
Example #1
=MINA(3, TRUE, 5)
This function evaluates the values 3, TRUE (which equates to 1), and 5, returning the smallest value, which is 1.
Example #2
=MINA("12", 8, FALSE)
This example compares the text “12” (which is converted to 12), the number 8, and FALSE (equivalent to 0). The result would be the smallest value: 0.
Example #3
=MINA(10, "7", 6, TRUE)
Here, the function compares 10, the text “7” (becomes 7), 6, and TRUE (1). The smallest value among these is 1.
Error handling
- VALUE!: This error occurs if a non-numeric text is provided that cannot be interpreted as a number or logical value.
- NUM!: This error arises if no valid numeric values are passed to the function, making it impossible to determine a minimum.
- REF!: This occurs if one or more cell references in the value arguments are invalid.