In Excel: use =LARGE(array, k) — it returns the kth largest value, so =LARGE(B2:B100, 3) gives the third-highest number.
On this page8
Syntax
Arguments
| Argument | required / optional | Description |
|---|---|---|
array | required | The range to rank. |
k | required | Which position from the top: 1 is the largest, 2 the second largest. |
Related functions
Select the cell for the ranked value and type =LARGE(.
Select the range of numbers, then a comma.
Enter the position you want — 1 for the largest, 2 for the second.
To build a list, anchor the range with $ and let the k argument increase down the rows.
Need it as an auditable file?
Ships inside the linked template — formula-driven, unlocked, audit-ready.
What this does
LARGE returns the kth largest value in a range, with k=1 equivalent to MAX. It is the function behind every "top 5" list: combine it with ROWS or a spilled SEQUENCE to produce a ranked block, and pair it with INDEX and MATCH to pull the label that belongs to each value. Duplicates each occupy a position, so two identical top values mean k=1 and k=2 return the same number. A k larger than the count of numeric values returns #NUM!. Keep the inputs visible and clearly labelled and the whole thing stays auditable — anyone who opens the file later, including you, can see at a glance exactly what feeds the result and change one assumption without hunting through the formula. Treat “large formula excel” as a small repeatable workflow rather than a one-off click you hope to remember next time. Use a small test block before the live file, so any surprise in the affected formula shows up while it is still harmless. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. That turns a calculation you can defend to a CFO or an auditor into a method you can reuse, explain, and defend when the workbook leaves your screen.
A worked example
Sales figures in B2:B100: =LARGE(B2:B100, 1) is the best month and =LARGE(B2:B100, 3) the third best. A live top-five list, =LARGE($B$2:$B$100, ROW()-1) filled down five rows, ranks automatically. To show which month it was, wrap it: =INDEX(A2:A100, MATCH(LARGE(B2:B100,1), B2:B100, 0)). LARGE turns "show me the top five" from a sort-and-copy chore into a formula that updates itself. If there is any chance you will reuse this, drop it into a small template tab right now: a labelled input area on the left and the formula beside it, checked once against the tool above. Next time the same question comes up, the answer is a single paste away instead of a rebuild from memory.
In Google Sheets
Google Sheets handles this almost identically to Excel. The formula syntax above is the same, and the menu lives under a slightly different label rather than a ribbon tab. Use the platform toggle at the top of the page to switch every keyboard shortcut between Windows and Mac, and expect at most cosmetic differences in naming. Keep this page bookmarked for the next time the same question comes up. Better still, repeat the steps once in your own workbook — doing it yourself is what turns a copied answer into something you remember. The short version of “large formula excel”: the answer is at the top of this page, the tool proves it on your own numbers, and the sections above explain why it holds so the next variation does not stump you. Excel rewards people who reference cells instead of typing values and who keep inputs separate from formulas, because that is what makes a result you can audit months later. Build it once, deliberately, with the live tool as a check, and you convert a one-off lookup into a reusable skill — which is the whole point of learning the why and not just the what.
Common mistakes
- A k greater than the number of numeric values in the range, which returns
#NUM!. - Forgetting to anchor the range with $ when filling down, so the range slides and each row ranks a different set.
- Expecting duplicates to be skipped — identical values occupy consecutive positions.
Frequently asked questions
How do I get the top 5 values?
Use =LARGE($range, 1) through =LARGE($range, 5), or fill =LARGE($range, ROW()-offset) down five rows.
Why does LARGE return #NUM!?
k is either below 1 or larger than the count of numbers in the range.
How do I show the name next to the top value?
Wrap it in INDEX and MATCH: =INDEX(labels, MATCH(LARGE(values,1), values, 0)).