Get nth largest value
=LARGE(array, k)
| Parameter | Description |
|---|---|
array |
An array or range of numeric values. |
k |
Position as an integer, where 1 corresponds to the largest value. |
In the formula below, the LARGE function returns the third largest value in a list of five numbers provided in an array constant:
=LARGE({29,14,33,19,17},3) // returns 19
Note values do not need to be sorted. To retrieve the 1st, 2nd, and 3rd largest values in a range:
=LARGE(range,1) // 1st largest value
=LARGE(range,2) // 2nd largest value
=LARGE(range,3) // 3rd largest value
In the example shown, the formulas in G5, G6, and G7 are, respectively:
=LARGE(D5:D16,1) // returns 92
=LARGE(D5:D16,2) // returns 89
=LARGE(D5:D16,3) // returns 86