Dapatkan nilai terkecil ke-n
=SMALL(array, k)
| Parameter | Deskripsi |
|---|---|
array |
An array or range of numeric values. |
k |
Position as an integer, where 1 corresponds to the smallest value. |
In the formula below, the SMALL function returns the third smallest value in a list of five numbers provided in an array constant:
=SMALL({29,14,33,19,17},3) // returns 19
Note values do not need to be sorted. To retrieve the 1st, 2nd, and 3rd smallest values in a range:
=SMALL(range,1) // 1st smallest value
=SMALL(range,2) // 2nd smallest value
=SMALL(range,3) // 3rd smallest value
In the example shown, the formulas in G5, G6, and G7 are, respectively:
=SMALL(D5:D16,1) // returns 66
=SMALL(D5:D16,2) // returns 69
=SMALL(D5:D16,3) // returns 71