PERCENTILEEXC
Calculates the exclusive percentile of a dataset to find the value below which a given percentage of data falls.
Syntax
PERCENTILEEXC(array, k)Arguments
Example
PERCENTILEEXC(10,20,30,40,50,60,70,80, 0.25)
// Returns 22.5
PERCENTILEEXC(10,20,30,40,50,60,70,80, 0.5)
// Returns 45
PERCENTILEEXC(10,20,30,40,50,60,70,80, 0.75)
// Returns 67.5
Excel Equivalent
FAQs

Last updated
Was this helpful?