Matemática

Percentile Calculator — Find Where Any Value Ranks

Enter your dataset and a value to instantly find its percentile rank, quartile, and Q1/Q2/Q3 thresholds. Works for exam scores, test results, health measurements, and any numeric data.

🗓️ Updated June 2026 Reviewed by
Calculator Free · Private
Reviewed by: (editorial policy ) · Last reviewed:
Have a website? Embed this calculator for free Free — copy the code and paste it on your website Embed on your site
<iframe src="https://hacecuentas.com/embed/percentile-data" width="100%" height="560" style="border:1px solid #e2e8f0;border-radius:12px;max-width:720px" loading="lazy" title="Percentile Calculator — Find Where Any Value Ranks"></iframe>
<p style="font-size:13px;text-align:center;margin:8px 0">Powered by <a href="https://hacecuentas.com" target="_blank" rel="noopener">Hacé Cuentas</a> — <a href="https://hacecuentas.com/percentile-data" target="_blank" rel="noopener">Percentile Calculator — Find Where Any Value Ranks</a></p>
Preview →

Paste it on your site. Keep the credit link — thanks for sharing. More widgets →

A percentile tells you what share of a dataset falls at or below a given value. Being at the 80th percentile means you rank higher than 80% of the group. This calculator finds the exact percentile rank of any value within your data and reports the three quartile boundaries (Q1, Q2, Q3) so you can see where the middle 50% of your data sits.

When to use this calculator

  • Find what percentile an exam or test score falls in relative to the class.
  • Evaluate a health measurement (weight, height, blood pressure) against a reference group.
  • Calculate Q1, Q2, Q3 quartiles for descriptive statistics homework.
  • Interpret standardized test results (SAT, GRE, IQ scores).
  • Rank employee performance metrics against team averages.
  • Analyze sensor readings or data samples in a research project.

Percentile Reference Table: Key Benchmarks and Quartiles

PercentileQuartileMeaning
P10Bottom 10% of the dataset
P25Q1Lower quartile — 75% above
P50Q2 (median)Exact midpoint of the data
P75Q3Upper quartile — 25% above
P90Top 10%
P95Top 5%
P99Top 1%

Fuente: NIST/SEMATECH e-Handbook of Statistical Methods — Percentiles (https://www.itl.nist.gov/div898/handbook/prc/section2/prc262.htm)

How it works

What is a percentile?

A percentile indicates what percentage of a distribution is less than or equal to a given value. If your test score falls at the 80th percentile, you scored higher than 80% of test-takers. It's a relative ranking measure used everywhere from standardized testing (SAT, GRE, GMAT) to pediatric growth charts, clinical lab results, and performance analytics.

> Key distinction: percentile measures relative position, not absolute performance. A student at the 95th percentile in a low-performing school may have a lower raw score than a student at the 60th percentile in a high-performing school.

Where percentiles actually matter

  • Pediatric growth charts (CDC/WHO): Doctors flag children below the 5th percentile or above the 95th percentile for weight or height as potentially needing evaluation — not because those values are wrong, but because they deviate significantly from the reference population.

  • Standardized testing: The SAT reports both a score and a percentile rank updated annually. A 1400/1600 corresponded roughly to the 95th percentile in recent years — but that percentile shifts each testing cycle as the test-taking population changes.

  • Clinical lab results: Reference ranges like "normal cholesterol" are typically defined as the range that covers the central 90% of a healthy population (P5–P95), meaning 10% of healthy people fall outside those bounds by definition.

  • Server and application performance (SRE/DevOps): P99 latency — the response time that 99% of requests fall under — is a standard SLA metric because averages hide outliers that real users experience.
  • Percentile reference table

    PercentileQuartileMeaning
    P10Bottom 10% of the dataset
    P25Q1Lower quartile — 75% above
    P50Q2 (median)Exact midpoint of the data
    P75Q3Upper quartile — 25% above
    P90Top 10%
    P95Top 5%
    P99Top 1%

    The interquartile range (IQR) = Q3 − Q1, and covers the central 50% of the data. It's the standard measure of spread used in box plots and outlier detection.

    How to calculate percentile rank step by step

    1. Sort all your data values in ascending order.
    2. Count how many values are less than or equal to your target value → call it k.
    3. Apply the formula: Percentile = (k ÷ n) × 100, where n = total number of values.
    4. Identify the quartile: Q1 at P25, Q2 (median) at P50, Q3 at P75.

    Example: Class scores = [10, 20, 30, 40, 50, 60, 70, 80, 90, 100], target = 75.

  • Values ≤ 75: 10, 20, 30, 40, 50, 60, 70 → k = 7

  • Percentile = (7 ÷ 10) × 100 = 70th percentile

  • Q1 = 25, Q2 = 55 (median), Q3 = 77.5
  • Why the formula varies across software

    Different tools use different interpolation methods, which is why Excel's PERCENTILE.INC, PERCENTILE.EXC, Python's numpy.percentile, and R's quantile() can return slightly different results for the same dataset. The differences are most noticeable with small samples (n < 30). The formula above uses the inclusive nearest-rank method, the most common in educational and basic statistical contexts.

    What this calculator does NOT include

  • It does not assume a normal distribution. Results are based purely on your input values.

  • It does not calculate percentile-to-value in the reverse direction (e.g., "what score corresponds to the 90th percentile?") — that requires interpolation or a separate lookup.

  • It does not weight values. Each data point counts equally regardless of frequency.
  • Common mistakes and tips

  • Do not confuse percentile rank with raw percentage: A score of 70% on a test is not the same as the 70th percentile. The percentile depends entirely on how everyone else scored.

  • Do not confuse percentile with percentile point: Moving from the 50th to the 60th percentile is a gain of 10 percentile points, not 10%.

  • Minimum sample size: With fewer than ~20 data points, percentile estimates become unstable — particularly at the extremes (P5, P95, P99). Results are directional, not precise.

  • Outliers inflate or compress percentile gaps: In highly skewed distributions (income, response times), the jump from P90 to P99 can represent a far larger absolute difference than the jump from P10 to P50.

  • P50 ≠ average: The median (P50) and the mean diverge in skewed distributions. In U.S. household income data, the median consistently sits well below the mean because high earners pull the average up.
  • Example: Ranking an exam score in a class of 10

    Data: Class scores = [10, 20, 30, 40, 50, 60, 70, 80, 90, 100]. Your score = 75.
    Step 1: Sort data ascending (already sorted).
    Step 2: Count values ≤ 75: {10, 20, 30, 40, 50, 60, 70} = 7 values.
    Step 3: Percentile = (7 ÷ 10) × 100 = 70.
    Step 4: Q1 = 25, Q2 (median) = 55, Q3 = 77.5 → score falls in Q3 range (50th–75th percentile).
    Your score of 75 is at the 70th percentile: you outranked 70% of your classmates. You sit in the third quartile (Q3), just below the top 25%.

    Frequently asked questions

    What is a percentile and how does it work?
    A percentile shows what percentage of the data is less than or equal to a specific value. If you're at the 80th percentile, you rank higher than 80% of the group. It's a relative measure — not an absolute score — so it only has meaning compared to a reference dataset.
    What is the formula to calculate percentile rank?
    Percentile = (count of values ≤ your value ÷ total values) × 100. Step-by-step: 1) Sort data ascending. 2) Count how many values are ≤ your target (k). 3) Divide by total count n. 4) Multiply by 100. Example: 7 scores ≤ 75 in a class of 10 → 70th percentile.
    What are Q1, Q2, and Q3 quartiles?
    Quartiles divide a sorted dataset into four equal parts: Q1 (25th percentile) — 25% of data falls below; Q2 (50th percentile, median) — the midpoint; Q3 (75th percentile) — 75% of data falls below. The gap Q3 − Q1 is called the interquartile range (IQR).
    Is a high percentile always good?
    It depends on what you're measuring. For exam scores, weight-lifting results, or IQ: higher is better. For blood pressure, body fat %, or error rates: a high percentile is a red flag. Always interpret the percentile relative to the direction of the metric being measured.
    How many data points do I need for reliable percentiles?
    You need at least 2 values to compute a percentile, but results become statistically meaningful with 20+ data points. With fewer than 10 values, percentiles can be misleading because a single outlier shifts the result significantly. Use 30+ values for stable, publishable percentile estimates.
    What is the interquartile range (IQR) and how do I find outliers?
    IQR = Q3 − Q1. It measures the spread of the central 50% of your data. Outliers are values below Q1 − 1.5 × IQR or above Q3 + 1.5 × IQR (Tukey's fence). Example: Q1 = 20, Q3 = 80, IQR = 60 → lower fence = 20 − 90 = −70; upper fence = 80 + 90 = 170. Any value outside [−70, 170] is a statistical outlier.
    What is the difference between percentile and percentage?
    Percentage is a plain proportion (e.g., you scored 75 out of 100 = 75%). Percentile rank is your relative position in a sorted group. A 75% exam score might be at the 90th percentile if the class found the test hard, or at the 40th percentile if it was easy. They measure different things.
    What is the difference between percentile and standard deviation?
    Standard deviation (σ) measures how spread out values are around the mean. Percentile shows where a single value ranks within the distribution. For a normal distribution: 68% of values fall within ±1σ, which maps to roughly the 16th–84th percentile. Use percentiles when the distribution is skewed; use σ for symmetric, normally distributed data.

    Methodology & trust

    Editorial

    Calculadora de matemática revisada por el equipo editorial de Hacé Cuentas, contrastada con NIST/SEMATECH e-Handbook of Statistical Methods — Percentiles, según nuestra política editorial y metodología.

    Updates

    Última revisión: June 22, 2026. Los parámetros se verifican periódicamente con las fuentes citadas.

    Privacy

    Calculations run 100% in your browser. We do not store or transmit your data.

    Limitations

    Indicative results. For critical decisions, consult a professional.

    📌 How to cite this calculator

    Rodríguez, M. (2026). Percentile Calculator — Find Where Any Value Ranks. Hacé Cuentas. https://hacecuentas.com/percentile-data

    Contenido bajo licencia CC-BY 4.0 — reutilizable citando la fuente con enlace a Hacé Cuentas.

    ✉️ Reportar un error en esta calculadora