“You scored in the 90th percentile.” PERCENTRANK tells you what fraction of the data a value sits above — turning a raw number into a standing within the group.
The example
A score of 88 in a class — its percentile standing.
| A | B | |
|---|---|---|
| 1 | Score | Percentile |
| 2 | 95 | 100th |
| 3 | 88 | 75th |
| 4 | 60 | 0th |
The formula
The value’s standing as a fraction:
How it works
PERCENTRANK reports relative standing, not raw value:
- Give it the data range and the value whose standing you want.
- It returns a number from 0 to 1: the fraction of the data the value is greater than or equal to.
- Multiply by 100 to express it as a percentile —
0.75becomes the 75th percentile. - An optional 3rd argument sets the number of significant digits (default 3).
Rank vs percentile rank: RANK gives an ordinal position (3rd of 20); PERCENTRANK gives relative standing (better than 85%). For exact-match-only behavior, the 365-era PERCENTRANK.EXC excludes the 0 and 1 endpoints, while PERCENTRANK.INC (= the classic PERCENTRANK) includes them.
Try it: interactive demo
Enter data, then a value to rank.
Variations
As a percentile number
0–100 instead of 0–1:
Exclusive version
Excludes the endpoints:
Ordinal rank instead
Position, not percentile:
Pitfalls & errors
0 and 1 at the extremes. The classic (inclusive) PERCENTRANK returns exactly 0 for the minimum and 1 for the maximum. Use PERCENTRANK.EXC if you need values strictly between.
Value out of range. If the value is smaller than the min or larger than the max, the EXC version returns #N/A; the inclusive one clamps to 0 or 1.
Interpolates between points. For values not exactly in the data, PERCENTRANK interpolates — useful, but it means the result isn’t a simple count.
Practice workbook
Frequently asked questions
How do I find the percentile rank of a value in Excel?
What's the difference between PERCENTRANK.INC and PERCENTRANK.EXC?
How is PERCENTRANK different from RANK?
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