Returns the k-th smallest value in a data set.
Bu işlev, Google E-Tablolar'da Excel'deki gibi çalışır — aynı söz dizimi ve bağımsız değişkenler.
SMALL(array, k)The SMALL function is used to identify the value at a specific rank within a range of numbers, where k represents the position from the smallest. It is useful for finding the minimum, second minimum, or any other relative rank in a dataset.
=SMALL({10, 5, 20, 8}, 2)Sonuç: 8
Finds the 2nd smallest value in the set {10, 5, 20, 8}, which is 8.
The function will return a #NUM! error.