ToolBark
Math

Percentile Calculator

Find any percentile value or rank a score in your dataset instantly

Dataset

10 values parsed  ·  min 12 ·  max 95

Find Value at Percentile

Quick pick

Result

Value at 75th Percentile69Interpolated between index 6 (60) and index 7 (72), weight 75%
Percentile queried75th
Value at percentile69
Dataset size (n)10
Minimum12
Maximum95

Common Percentiles Summary

PercentileValueLabel
10th19.210th percentile (P10)
25th36.251st quartile (Q1)
50th52.5Median (Q2)
75th693rd quartile (Q3)
90th8690th percentile (P90)
95th90.595th percentile (P95)
99th94.199th percentile (P99)

Sorted Dataset

12203540505560728595

How It Works

Percentile (value at P)
Uses linear interpolation between adjacent sorted values. The index is (P/100) × (n−1). Same as NumPy and Excel PERCENTILE.INC.
Percentile rank (exclusive)
(Values strictly below ÷ n) × 100. Tells you what percentage of the dataset falls below your value.
Percentile rank (inclusive)
(Values ≤ target ÷ n) × 100. Includes equal values in the count.
Quartiles
Q1 = 25th, Q2 = 50th (median), Q3 = 75th percentile. They divide sorted data into four equal parts.
Interpolation
When the exact percentile falls between two data points, the result is a weighted average of the two neighbors.
Dataset size (n)
Total count of numbers in your dataset. More values generally give a more meaningful percentile.
About

A percentile calculator helps you make sense of data distributions — whether you need to find the value at the 90th percentile of a dataset, calculate Q1/Q2/Q3 quartiles, or determine what percentile rank a specific score falls at. Enter any list of numbers and this free tool computes results instantly using standard linear interpolation, the same method used by Excel and NumPy.

FAQ
What method does this percentile calculator use?+

It uses linear interpolation (also called the inclusive method), identical to Excel's PERCENTILE.INC and NumPy's default. The index is calculated as (P/100) × (n−1), then the result is interpolated between the two adjacent sorted values. This is the most widely accepted method in statistics.

What is the difference between percentile rank (exclusive) and (inclusive)?+

The exclusive rank is (count of values strictly below your value ÷ n) × 100. The inclusive rank is (count of values ≤ your value ÷ n) × 100. The exclusive method is common in standardized testing and education; the inclusive version is used when you want ties to count toward the rank.

What are quartiles and how do they relate to percentiles?+

Quartiles divide a sorted dataset into four equal parts. Q1 is the 25th percentile, Q2 (the median) is the 50th percentile, and Q3 is the 75th percentile. This calculator shows all common quartiles in the summary table automatically.

Can I enter data with decimal numbers or negative values?+

Yes. The calculator accepts any finite number — integers, decimals, and negatives — separated by commas, spaces, or newlines. Invalid tokens (like letters) are flagged with a friendly error message so you can correct them before calculating.

Related tools