📌 What is the Excel LARGE Function?
The Excel LARGE function in Excel returns the “k-th largest” value in a data set. It helps you find “what is the largest, second largest, third largest… and so on” value in a list.
⚙️ Function Syntax
=LARGE(array, k)- array: The range or array of data you want to examine
- k: The position from the largest (1 for largest, 2 for second largest, etc.)
▶️📹 Watch on YouTube Now! 🔴
💡 Practical Examples
Example 1: Basic Usage
Let’s say we have student scores in cells A1 to A5:
85
92
78
95
88To find the highest score:
=LARGE(A1:A5, 1)Result: 95
To find the second highest score:
=LARGE(A1:A5, 2)Result: 92
To find the third highest score:
=LARGE(A1:A5, 3)Result: 88
Example 2: Sales Data Analysis
| Product | Sales |
|---|---|
| A | 12000 |
| B | 8500 |
| C | 19500 |
| D | 11000 |
Highest sales: =LARGE(B2:B5, 1) ← 19500
Second highest sales: =LARGE(B2:B5, 2) ← 12000Example 3: Advanced Applications
1. Finding top 3 values:
=LARGE(A1:A10, 1) ← First largest
=LARGE(A1:A10, 2) ← Second largest
=LARGE(A1:A10, 3) ← Third largest2. Average of top 3 values:
=AVERAGE(LARGE(A1:A10, 1), LARGE(A1:A10, 2), LARGE(A1:A10, 3))3. Combining with other functions:
=INDEX(A1:A10, MATCH(LARGE(B1:B10, 3), B1:B10, 0))This formula returns the product name with the third highest sales.
⚠️ Important Notes
- If k ≤ 0 or k exceeds the number of data points, you’ll get a
#NUM!error - Text values and empty cells are ignored
- You can use non-contiguous ranges:
=LARGE((A1:A5, C1:C5), 2)
🔄 LARGE vs. MAX
- MAX: Returns only the largest value (equivalent to
=LARGE(range, 1)) - LARGE: More flexible – can return any k-th largest value
🎯 Comprehensive Example
Quarterly sales report:
| Month | Sales |
|---|---|
| January | 50000 |
| February | 42000 |
| March | 68000 |
| April | 55000 |
Performance analysis:
Best month: =LARGE(B2:B5, 1) ← 68000 (March)
Second best: =LARGE(B2:B5, 2) ← 55000 (April)
Below average: =COUNTIF(B2:B5, "<"&AVERAGE(B2:B5)) ← 2 months💡 Pro Tips
- Quick ranking: Use LARGE with RANK to create custom ranking systems
- Top N analysis: Combine with other functions for comprehensive top-N analysis
- Data validation: Use to check for outliers or exceptional values
- Conditional Formatting Tip:
- Select your data range
- Go to Conditional Formatting → Top/Bottom Rules → Top 10 Items
- Change 10 to 3 to highlight the top 3 values visually
In summary, Excel LARGE function is a powerful tool for data analysis, ranking, and reporting. It’s particularly useful for financial analysis, performance tracking, and statistical reporting where you need to identify top performers or values in your data.
Remember: SMALL finds “bottom” values, LARGE finds “top” values – they’re complementary functions!