To total just the biggest few values in a list — top 3 sales, three best months — pair LARGE with SUM. LARGE pulls the nth-largest value, and an array of positions grabs several at once.
{1,2,3} asks LARGE for the 1st, 2nd and 3rd largest; SUMPRODUCT adds them without needing Ctrl+Shift+Enter.
The example
Monthly sales. We want the total of the top 3.
| A | B | |
|---|---|---|
| 1 | Month | Sales |
| 2 | Jan | $120 |
| 3 | Feb | $300 |
| 4 | Mar | $90 |
| 5 | Apr | $250 |
| 6 | May | $200 |
| 7 | Jun | $60 |
| 8 | Top 3 total: | $750 |
The formula
The top-3 total:
How it works
Two ideas combine:
LARGE(B2:B7, 1)is the largest value,LARGE(..., 2)the second largest, and so on.- Feeding LARGE an array of ranks,
{1,2,3}, returns all three at once: {300, 250, 200}. SUMPRODUCTadds that little array —750— and, unlike plain SUM, it handles the array without Ctrl+Shift+Enter.- Change
{1,2,3}to{1,2,3,4,5}for the top 5, or point it at a cell withSEQUENCE(C1).
Try it: interactive demo
Choose how many of the top values to add.
Variations
Top N with a condition
Sum the top 3 West-region values — FILTER the list first (Excel 365):
Bottom N (smallest)
Swap LARGE for SMALL:
Make N a cell
Drive the count from a cell with SEQUENCE (Excel 365):
Pitfalls & errors
Use SUMPRODUCT or array-enter. Plain =SUM(LARGE(B2:B7,{1,2,3})) needs Ctrl+Shift+Enter in older Excel. SUMPRODUCT avoids that.
#NUM! when N is too big. Asking for the 7th largest of 6 values errors. Keep N no larger than the count, or cap it with MIN(N, COUNT(range)).
Ties count as separate ranks. Two values of 300 occupy ranks 1 and 2, so both are included — usually what you want, but worth knowing.
Practice workbook
Frequently asked questions
How do I sum the top N values in Excel?
How do I sum the top N with a condition?
How do I sum the smallest N values?
Stop fighting formulas. Learn them in a day.
This recipe is one of hundreds of real-world formulas we teach. Our Excel Formulas & Functions class covers lookups, logic, text, and dynamic arrays hands-on — live in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.
See the Formulas & Functions Class