PERCENTILE.EXC Function

Excel Functions › Statistical

Excel 2010+ Statistical

The Excel PERCENTILE.EXC function returns the value at a given percentile using the exclusive method, where k must fall strictly between 0 and 1 — the 0% and 100% endpoints are excluded.


Quick answer:
=PERCENTILE.EXC({1,2,3,4},0.25) 25th percentile = 1.25

Syntax

=PERCENTILE.EXC(array, k)
ArgumentDescription
arrayRequiredThe range or array of numeric data.
kRequiredThe percentile, strictly greater than 0 and less than 1. k must lie between 1/(n+1) and n/(n+1), or the function returns an error.

How to use it

PERCENTILE.EXC uses the exclusive ranking method. It computes the rank position as k×(n+1), which keeps the result strictly inside the data — you cannot ask for the 0th or 100th percentile.

=PERCENTILE.EXC({1,2,3,4},0.25) // = 1.25
=PERCENTILE.EXC({1,2,3,4},0.5) // median = 2.5

For four points at k=0.25 the position is 0.25×5 = 1.25 — a quarter of the way from the 1st to the 2nd value, giving 1.25. Compare this to PERCENTILE.INC, which returns 1.75 for the same inputs.

Watch the valid range for k. With n data points, k must be between 1/(n+1) and n/(n+1). Asking for a percentile outside that window — or any k of 0 or 1 — returns the #NUM! error.

Try it: interactive demo

Live demo

Pick a PERCENTILE.EXC example to see the formula and its result.

Result:

Practice workbook

📊
Download the free PERCENTILE.EXC practice workbook
Every example on this page, ready to open in Excel — plus practice challenges with answers on a separate tab. No sign-up required.

Frequently asked questions

What does the .EXC in PERCENTILE.EXC mean?
EXC stands for exclusive — the percentile k must be strictly greater than 0 and less than 1, so the 0% and 100% endpoints are excluded from the result.
Why does PERCENTILE.EXC return a #NUM! error?
Because k is outside the valid window. With n points, k must be between 1/(n+1) and n/(n+1). For 4 points that is 0.2 to 0.8, so k=0.1 would error.
When should I use PERCENTILE.EXC instead of PERCENTILE.INC?
Use EXC when your statistical method requires percentiles to fall strictly inside the observed data (common in some academic and finance conventions). For everyday reporting, INC is the usual choice.
Does PERCENTILE.EXC have a legacy equivalent?
No. PERCENTILE.EXC was introduced in Excel 2010; the legacy PERCENTILE matches PERCENTILE.INC, not EXC. There is no older exclusive function.

Master functions like this in one day

This page covers one function. Our Excel Formulas and Functions class covers the 30 that matter most — live, hands-on, taught by professionals in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related functions: PERCENTILE.INC · QUARTILE.EXC · PERCENTRANK.EXC · MEDIAN · QUARTILE.INC