PERCENTILEEXC
PERCENTILEEXC refers to the exclusive percentile calculation used in some spreadsheet software, most commonly implemented as PERCENTILE.EXC. It computes a percentile value from a numeric dataset by applying the exclusive method, which excludes the minimum and maximum data points from the calculation. This approach is contrasted with the inclusive method that includes those endpoints.
The typical syntax is: PERCENTILE.EXC(array, k)
- array: a range or array of numeric data.
- k: a decimal value between 0 and 1, exclusive (0 < k < 1).
The function returns the kth percentile of the data using linear interpolation when the exact percentile position
Comparison with related functions
PERCENTILE.EXC differs from PERCENTILE.INC, which uses the inclusive method and allows k to be 0 or 1.
For a dataset {1, 2, 3, 4, 5} and k = 0.5, PERCENTILE.EXC returns 3, since the median
PERCENTILE.EXC is used in statistical analysis and data reporting where endpoints are not desired in percentile