The PERCENTILE.EXC function in Excel is a powerful tool used to determine the k-th percentile of a dataset, allowing users to assess the distribution of values within a specified range. This function is particularly useful in statistical analysis, as it helps in understanding and interpreting data by identifying thresholds, making it ideal for data analysis tasks.
Syntax
PERCENTILE.EXC(array, k)
- array: This is the range of values from which you want to calculate the k-th percentile.
- k: This represents the percentile value you wish to find, expressed as a decimal. It must be greater than 0 and less than 1.
Example #1
PERCENTILE.EXC(A1:A10, 0.25)
This function call calculates the 25th percentile of the values in the range A1 to A10. For example, if A1:A10 contains the values {10, 20, 30, 40, 50}, this returns 22.5, indicating that 25% of the data falls below this value.
Example #2
PERCENTILE.EXC(B1:B20, 0.80)
This call finds the 80th percentile among the values in B1 to B20. If those values are {5, 15, 25, 35, 45}, the output would be 42, meaning 80% of the numbers are below 42.
Example #3
PERCENTILE.EXC(C1:C15, 0.60)
This function computes the 60th percentile in the dataset from C1 to C15. Suppose this range contains {2, 4, 6, 8, 10}, it returns 7.2, suggesting that 60% of the data is less than 7.2.
Error handling
- NUM! Error occurs if k is less than or equal to 0 or greater than or equal to 1.
- VALUE! This error appears if array is not a valid range of numeric values.