FormulaCraft

How to find the nth largest value in Excel and Google Sheets

Topic:RANK & statistical aggregates
Excel & Google Sheets
=LARGE(B2:B6,2)

Verified example

Computed by a real spreadsheet engine on the sample data below.

NameScore
Alice95
Bob82
Carol78
Dave88
Eve91

=LARGE(B2:B6,2)91

Try it with your data

Edit the grid or formula, then run it through a real spreadsheet engine — no signup.

Sample data — click any cell to edit

Runs server-side · free · no signup

Step by step

  1. 1Select the output cell.
  2. 2Type =LARGE(.
  3. 3Select the range of numbers, e.g. B2:B6.
  4. 4Enter the rank k — type 1 for the largest, 2 for the second largest, etc.
  5. 5Close the parenthesis and press Enter.

Tips

Need it for your exact data?

Describe your columns in plain English and get the precise formula for your sheet, with the right Excel or Sheets syntax.

Frequently asked

How do I find the row that contains the nth largest value?

Nest LARGE inside MATCH and then INDEX: =INDEX(A2:A6,MATCH(LARGE(B2:B6,2),B2:B6,0)) returns the name corresponding to the 2nd largest score.

What happens with duplicate values?

LARGE counts each occurrence separately. If 90 appears twice, LARGE(range,1) and LARGE(range,2) both return 90.

More on RANK & statistical aggregates

See all →

Formulas used

Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.

Last reviewed: