Syntax
| Parameter | Description |
|---|---|
| array | Parameter of the LARGE function. |
| k | Parameter of the LARGE function. |
Examples
Second highest sales
=LARGE(B2:B50, 2)
Top 3 test scores
=LARGE(D2:D200, {1,2,3})
Dynamic ranking
=LARGE($C$2:$C$100, ROW()-1)
Common Errors
Returned when k is less than 1 or greater than the number of values in the array. For example, =LARGE(A1:A5, 10) errors because there are only 5 values.
Occurs when k is not a number.
Tips
The 1st largest value is the same as MAX. Use LARGE when you need anything other than the absolute maximum.
If two values tie for 2nd place, LARGE returns the same value for k=2 and k=3. The next distinct value would be at k=4.
Combine LARGE with INDEX/MATCH to build a top-N leaderboard: =INDEX(names, MATCH(LARGE(scores,1), scores, 0)) gets the name of the top scorer.
Try LARGE in Viztab
Import your data and use LARGE with 370+ other formulas. No signup required.
Open Viztab