PERCENTILEX.EXC DAX Function (Statistical)
Returns the k-th (exclusive) percentile of an expression values in a table.
Syntax
| Parameter | Attributes | Description |
|---|---|---|
|
Table Iterator |
Table over which the Expression will be evaluated. |
|
|
Expression Row Context By Expression |
Expression to evaluate for each row of the table. |
|
| K |
Desired percentile value in the interval [1/(n+1),1-1/(n+1)], where n is a number of valid data points. |
Return values
Percentile value.
Remarks
PERCENTILEX.EXC considers the blank values returned by Expression. This behavior is different from PERCENTILE.EXC, which ignores the blank values.
» 3 related functions
Examples
-- PERCENTILEX iterates the table and compute the expression for each row,
-- computing the k-th percentile
EVALUATE
{
( "Average Sales", AVERAGEX ( Sales, Sales[Quantity] * Sales[Net Price] ) ),
( "Median Sales", MEDIANX ( Sales, Sales[Quantity] * Sales[Net Price] ) ),
( "Percentile Sales 0.25", PERCENTILEX.INC ( Sales, Sales[Quantity] * Sales[Net Price], 0.25 ) ),
( "Percentile Sales 0.50", PERCENTILEX.INC ( Sales, Sales[Quantity] * Sales[Net Price], 0.50 ) ),
( "Percentile Sales 0.75", PERCENTILEX.INC ( Sales, Sales[Quantity] * Sales[Net Price], 0.75 ) )
}
| Value1 | Value2 |
|---|---|
| Average Sales | 305.21 |
| Median Sales | 114.21 |
| Percentile Sales 0.25 | 22.99 |
| Percentile Sales 0.50 | 114.21 |
| Percentile Sales 0.75 | 345.60 |
--
-- Different handling of blanks between PERCENTILE and PERCENTILEX
-- PERCENTILE ignores blank values
-- PERCENTILEX considers blank values
--
DEFINE
TABLE SampleDataWithBlanks =
{ BLANK (), BLANK (), BLANK (), 1, 2, 3, 4 }
EVALUATE
{
( "PERCENTILE.EXC 0.25", PERCENTILE.EXC ( SampleDataWithBlanks[Value], 0.25 ) ),
( "PERCENTILE.EXC 0.50", PERCENTILE.EXC ( SampleDataWithBlanks[Value], 0.50 ) ),
( "PERCENTILE.EXC 0.75", PERCENTILE.EXC ( SampleDataWithBlanks[Value], 0.75 ) ),
( "PERCENTILEX.EXC 0.25", PERCENTILEX.EXC ( SampleDataWithBlanks, SampleDataWithBlanks[Value], 0.25 ) ),
( "PERCENTILEX.EXC 0.50", PERCENTILEX.EXC ( SampleDataWithBlanks, SampleDataWithBlanks[Value], 0.50 ) ),
( "PERCENTILEX.EXC 0.75", PERCENTILEX.EXC ( SampleDataWithBlanks, SampleDataWithBlanks[Value], 0.75 ) )
}
| Value1 | Value2 |
|---|---|
| PERCENTILE.EXC 0.25 | 1.25 |
| PERCENTILE.EXC 0.50 | 2.50 |
| PERCENTILE.EXC 0.75 | 3.75 |
| PERCENTILEX.EXC 0.25 | (Blank) |
| PERCENTILEX.EXC 0.50 | 1.00 |
| PERCENTILEX.EXC 0.75 | 3.00 |
Related articles
Learn more about PERCENTILEX.EXC in the following articles:
-
Statistical Patterns
DAX includes a few statistical aggregation functions, such as average, variance, and standard deviation. Other typical statistical calculations require you to write longer DAX expressions. Excel, from this point of view, has a much richer language. The Statistical Patterns are a collection of common statistical calculations: median, mode, moving average, percentile, and quartile. » Read more
Related functions
Other related functions are:
Last update: Oct 22, 2025 » Contribute » Show contributors
Contributors: Alberto Ferrari, Marco Russo, Ville-Pietari Louhiala, Kenneth Barber
Microsoft documentation: https://docs.microsoft.com/en-us/dax/percentilex-exc-function-dax
