Percentile Calculator
Enter a dataset to find the value at any percentile, or find the percentile rank of a specific value.
Calculator verified • Last updated: August 2026
—
Your Sorted Data
Each bar is one value from your dataset, sorted smallest to largest. The highlighted bars are at or below your target — the highlighted share of the total is exactly the percentile being calculated.
How to Calculate a Percentile
To find the value at a given percentile, first sort your data from smallest to largest. Then find the rank position using the percentile formula, and interpolate between the two nearest data points if the rank falls between them.
rank: the position (index) in the sorted dataset corresponding to the desired percentile.
P: the desired percentile (for example, 75 for the 75th percentile).
n: the total number of data points in the dataset.
For example, in the sorted dataset {12, 15, 18, 22, 25, 28, 30, 32, 35, 40} (n = 10), the 75th percentile has a rank of — 75% of the way between the 7th value (30) and 8th value (32), giving .
Finding a Percentile Rank Instead
Going the other direction — finding what percentile a specific value falls at — works by counting how many values in the dataset are below it (with values exactly equal to it counted as half) and dividing by the total count. A value with more data below it has a higher percentile rank.
Percentile vs. Percentage
These two terms are easy to confuse but mean very different things. A percentage describes a share of a total — scoring 90% on a test means getting 90 out of 100 points. A percentile describes a position relative to other values in a group — being in the 90th percentile means scoring higher than 90% of everyone else who took the test, regardless of your raw score.
Common Percentile Landmarks
The 25th, 50th, and 75th percentiles are often called quartiles, dividing a dataset into four equal parts. The 50th percentile is the median. Standardized tests, growth charts, and income statistics all commonly report results in percentile terms specifically because it's easier to interpret relative standing than a raw score alone.
A Brief History of the Percentile
The percentile concept grew out of the same 19th-century statistical movement that produced the correlation coefficient and the modern normal distribution, with Francis Galton among the key figures who popularized dividing data into ranked, equal-sized groups to describe relative standing. The idea gained enormous practical importance with the rise of standardized testing and child growth charting in the 20th century, where percentiles offered parents and educators an intuitive way to understand where a specific score or measurement fell relative to a broader reference population, without needing to interpret a raw number in isolation. Pediatric growth charts, still used worldwide today to track a child's height and weight against age-based population percentiles, remain one of the most widely recognized everyday applications of the concept.
Common Percentile Mistakes
Confusing a percentile with a percentage score is a frequent and understandable mix-up — scoring in the 90th percentile on a test doesn't mean answering 90% of questions correctly, it means scoring higher than 90% of other test-takers, a comparison that depends entirely on how everyone else performed. Assuming percentiles are always calculated the same way is another gap — different interpolation methods (several are in common statistical use) can produce slightly different percentile values for the same dataset, particularly with small samples. Treating percentile rank as a precise, stable measure over time can also mislead, since a percentile is always relative to the specific reference group or dataset it was calculated from, and that reference can shift.
Percentile Terms You Should Know
Quartile — one of three values (25th, 50th, 75th percentiles) that divide a dataset into four equal parts.
Percentile Rank — the percentage of values in a dataset that fall at or below a specific value.
Interquartile Range (IQR) — the distance between the 25th and 75th percentiles, often used as a robust measure of spread that's less sensitive to outliers than the full range.
Interpolation — the method used to estimate a percentile value that falls between two actual data points in a sorted dataset.
Frequently Asked Questions
What is a percentile?
A percentile tells you the value below which a given percentage of the data falls. The 75th percentile is the value below which 75% of the observations sit.
What is the difference between a percentile and a percentage?
A percentage describes a share of a whole (like a test score of 90%). A percentile describes a position within a dataset relative to other values (like scoring higher than 90% of test-takers). Scoring 90% on a test and being in the 90th percentile are usually two very different things.
Is the median the same as the 50th percentile?
Yes. The median is exactly the 50th percentile — the value below which half the data falls.
Are there different ways to calculate percentiles?
Yes — several interpolation methods exist and can give slightly different results, especially for small datasets. This calculator uses linear interpolation between closest ranks, the same method Excel's PERCENTILE.INC function uses.