Dapatkan nilai terkecil.
=MIN(number1, [number2], ...)
| Parameter | Deskripsi |
|---|---|
number1 |
Number, reference to numeric value, or range that contains numeric values. |
number2 |
[optional] Number, reference to numeric value, or range that contains numeric values. |
The MIN function returns the smallest numeric value in supplied data:
=MIN(12,17,25,11,23) // returns 11
When given a range, MIN returns the smallest value in the range:
=MIN(A1:A10) // minimum value in A1:A10
The MIN function can accept a mix of arguments:
=MIN(5,10)
=MIN(A1,A2,A3)
=MIN(A1:A10,1)
=MIN(A1:A10,C1:C10)
The MIN function will ignore logical values and numbers entered as text that appear on the worksheet. However, if such values are provided directly as
=MIN(5,TRUE) // returns 1
=MIN(7,5,"3") // returns 3