=SMALL(array,k)
=SMALL({29,14,33,19,17},1)
The SMALL function can be used to return the smallest value in a range. For example,the example returns 14 because that is the smallest item in the list.
=SMALL({29,14,33,19,17},2)
The SMALL function can also be used to return the second or third smallest items in a range. For example,this returns 17 because it is the second smallest item in the list.
=SMALL(A1:A5,1)
You can use the SMALL function to find the minimum value in a range by setting the second argument to 1. For example, the example will return the smallest value in the range A1:A5.
The SMALL function is used for extracting the kth smallest value from a given data set.