Excel MINA Function

The Excel MINA function returns the smallest numeric value in a range of values. The MINA function ignores empty cells, but evaluates the logical values TRUE and FALSE as 1 and 0, respectively.
- value1 - Number, reference to numeric value, or range that contains numeric values.
- value2 - [optional] Number, reference to numeric value, or range that contains numeric values.
Like the MIN function, the MINA function returns the smallest numeric value in a supplied set of data. For example, the MINA function can return the lowest test score, the fastest time in a race, the lowest temperature, or the smallest sales number. Arguments can be provided as constants, or as cell references or ranges:
The primary difference between MIN and MINA is that MINA evaluates TRUE and FALSE values as 1 and 0 respectively. Microsoft documentation also claims the MINA function evaluates numbers entered as text. But I have not been able to reproduce this behavior unless the number is typed directly into the list of arguments, in which case MINA and MINA both seem to evaluate the number:
However, if A1 contains "5" (5 entered as text), and A2 contains 10, we see:
Please contact me if you can explain this behavior :)
Notes:
- The MINA function ignores empty cells.
- The MINA function in current versions of Excel accepts up to 255 arguments. If arguments contain no numbers, MINA returns 0.
- Arguments can be provided as numbers, names, arrays, or references that contain numbers.
- The MINA function evaluates TRUE and FALSE values as 1 and 0 respectively.