PERCENTILE.EXC is a DAX function that returns the exclusive k-th percentile of values in a column.
Syntax
PERCENTILE.EXC(
Column,
K
)
| Argument | Properties | Description |
|---|---|---|
| Column | A column containing the values. | |
| K | Desired percentile value in the interval [1/(n+1),1-1/(n+1)], where n is a number of valid data points. |