PERCENTILE.EXC Function

PERCENTILE.EXC Function

PERCENTILE.EXC Function

Find a percentile while excluding the two outer edges of the distribution.

ExcelClash Team
PUBLISHED

Summary

PERCENTILE.EXC returns the value at a chosen percentile using the exclusive method. In practice, that means Excel treats the two outer edges differently from PERCENTILE.INC and focuses on percentiles inside the range rather than including the endpoints.

This function is useful when you want a cutoff such as the 75th or 90th percentile and you specifically want the exclusive version of the calculation. Microsoft notes that k must be greater than 0 and less than 1, and Excel interpolates when the requested percentile falls between two values.

Purpose

Find an exclusive percentile

Returns the value at a chosen percentile while using the exclusive percentile method.

Return Value

One cutoff value

The result is a number that marks the percentile you asked for.

Syntax

=PERCENTILE.EXC(array, k)

array is the numeric dataset, and k is the percentile written as a decimal. So 0.75 means the 75th percentile and 0.9 means the 90th percentile.

Arguments

  • array - [required] The numeric range or array you want to evaluate.
  • k - [required] The percentile as a decimal where 0 < k < 1.

PERCENTILE.EXC vs Other Functions

Function Main use Best when
PERCENTILE.EXC Exclusive percentile You want the percentile from the exclusive method.
PERCENTILE.INC Inclusive percentile You want percentiles with k allowed from 0 to 1.
QUARTILE.EXC Exclusive quartiles You only need quarter splits like 25%, 50%, and 75%.
MEDIAN Middle value You only care about the center, not any other percentile.

The key difference is the percentile rule. PERCENTILE.EXC does not allow k=0 or k=1, while PERCENTILE.INC does.

Using the PERCENTILE.EXC Function

This function is handy when you need a cutoff rather than a rank label. For example, if the 90th percentile score is 93, that tells you what score marks the top end of the group. That is often more useful than saying someone is ranked 4th, because the percentile gives you a threshold you can reuse.

Microsoft also notes two error rules worth remembering. If k is not numeric, Excel returns #VALUE!. If the array is empty, if k<=0, or if k>=1, Excel returns #NUM!. Even with a valid decimal, Excel can still return #NUM! if it cannot interpolate that percentile for the dataset size.

  • Use it to set score cutoffs for top performers.
  • Use it to split products into standard and premium groups.
  • Use it when the exclusive method is specifically required.

Example 1 - Find the 90th percentile

This gives a high-end cutoff for the group.

=PERCENTILE.EXC(B1:B10,0.9) // Returns the 90th percentile of the list.
Check Answer
Challenge #1
Target: Sheet1!F1
90th Percentile

Find the 90th percentile of the list in B1:B10. Formula: =PERCENTILE.EXC(B1:B10,0.9).

Example 2 - Mark the top quarter

The 75th percentile is a common way to separate the upper quarter from the rest.

=PERCENTILE.EXC(A1:A10,0.75) // Returns the 75th percentile.
Check Answer
Challenge #2
Target: Sheet1!F2
Top Quarter

Find the 75th percentile of the list in A1:A10. Formula: =PERCENTILE.EXC(A1:A10,0.75).

Example 3 - Check the middle percentile

The 50th percentile is the midpoint under the exclusive method.

=PERCENTILE.EXC(B1:B10,0.5) // Returns the 50th percentile.
Check Answer
Challenge #3
Target: Sheet1!F3
Middle Percentile

Find the 50th percentile of the list in B1:B10. Formula: =PERCENTILE.EXC(B1:B10,0.5).

Example 4 - Set an 80th percentile target

This is useful when you want a target above the middle but below the very top.

=PERCENTILE.EXC(B1:B10,0.8) // Returns the 80th percentile.
Check Answer
Challenge #4
Target: Sheet1!F4
80th Percentile

Find the 80th percentile of the list in B1:B10. Formula: =PERCENTILE.EXC(B1:B10,0.8).

Conclusion Recap

  • Main job: PERCENTILE.EXC returns a percentile cutoff using the exclusive method.
  • k rule: Use a decimal strictly between 0 and 1.
  • Interpolation: Excel calculates between values when the percentile falls between data points.
  • Main contrast: Use PERCENTILE.INC if you need percentiles that include 0 or 1.
  • Good use cases: Score cutoffs, pricing tiers, and benchmark targets.
Tactical Arena
Select Scenario:
Share PERCENTILE.EXC Function!

Tell your friends about this post

Discussion

ExcelClash is an interactive platform designed to level up your Excel skills through real-world exercises and challenges. Sharpen your logic, solve real spreadsheet problems, and learn faster.

© 2026 ExcelClash, Inc. All rights reserved.