Kembalikan nilai terkecil.
=MINA(value1, [value2], ...)
| Parameter | Deskripsi |
|---|---|
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 number in the supplied data:
=MIN(12,17,25,11,23) // returns 11
=MINA(12,17,25,11,23) // returns 11
MINA can be used with constants, cell references, or ranges:
=MINA(5,10)
=MINA(A1,A2,A3)
=MINA(A1:A10)
Note that MIN and MINA both evaluate numbers as text when supplied directly as arguments:
=MINA(5,"3") // returns 3
=MIN(5,"3") // returns 3