Percentiles and quartiles tell you where a value sits in a distribution — the 90th-percentile response time, the top quartile of sales. PERCENTILE and QUARTILE compute them directly.
0.9 for the 90th. 90% of values fall at or below the result.
The example
A set of scores with key percentiles and quartiles.
| A | C | D | ||
|---|---|---|---|---|
| 1 | Score | Stat | Value | |
| 2 | 60 | Q1 (25th) | 68 | |
| 3 | 72 | Median (Q2) | 75 | |
| 4 | 75 | Q3 (75th) | 84 | |
| 5 | 88 | 90th pct | 89.6 | |
| 6 | 91 |
The formula
The 90th percentile and the first quartile:
How it works
Both rank the data and read off a position:
PERCENTILE(range, 0.9)finds the value below which 90% of the data falls — interpolating between points as needed.QUARTILE(range, 1)is the 25th percentile (Q1);2is the median;3is the 75th percentile (Q3).- So
QUARTILE(range, 1)equalsPERCENTILE(range, 0.25)— quartiles are just the quarter-point percentiles. - Use these to define bands (“top 10%”), spot the spread, or build a box plot.
.INC vs .EXC. Modern Excel splits these into PERCENTILE.INC (inclusive, same as the classic PERCENTILE) and PERCENTILE.EXC (exclusive, excludes the 0th and 100th points). .INC matches the old behavior — use it unless you specifically need exclusive.
Try it: interactive demo
Choose a percentile of the sample scores {60,72,75,88,91}.
Variations
Quartiles
0=min, 1=Q1, 2=median, 3=Q3, 4=max:
Modern .INC functions
The current names (identical to the classics):
A value's own percentile rank
Where does 80 sit?
Pitfalls & errors
Percentile as a percent, not a decimal. Use 0.9 for the 90th percentile, not 90 (which errors — it must be between 0 and 1).
.INC vs .EXC give different answers near the ends of the data. The classic PERCENTILE = .INC; only use .EXC if your method requires it.
Interpolation. Percentiles interpolate between data points, so the result often isn’t one of your actual values — that’s expected.
Practice workbook
Frequently asked questions
How do I calculate a percentile in Excel?
How do I find quartiles in Excel?
What's the difference between PERCENTILE.INC and PERCENTILE.EXC?
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