- Does LARGE return only unique values, or does it count duplicates?
- LARGE counts duplicates. If your array is {5000, 7200, 5000, 9500}, the sorted descending order is 9500, 7200, 5000, 5000—so LARGE(..., 3) returns 5000 (the first occurrence in rank order), not the next unique value.
- How do I find the customer name with the k-th largest revenue?
- Wrap LARGE in INDEX/MATCH: =INDEX(A2:A9, MATCH(LARGE(C2:C9, 1), C2:C9, 0)). This finds the k-th largest value, matches it in the revenue column, and returns the corresponding customer name.
- Can LARGE work with negative numbers?
- Yes. LARGE sorts all numbers—positive, negative, and zero—in descending order. So if your array is {-500, 100, -1000, 50}, LARGE(...,1) returns 100, and LARGE(...,4) returns -1000.
- What's the difference between LARGE and RANK?
- LARGE returns the actual value (e.g., the $5,000 revenue); RANK returns the position or rank number (e.g., 3rd place). Use LARGE when you need the value, RANK when you need the position.