Returns the k-th percentile of values in a range. You can use this function to establish a threshold of acceptance. For example, you can decide to examine candidates who score above the 90th percentile.
Syntax
PERCENTILE(array,k)
Array is the array or range of data that defines relative standing.
K is the percentile value in the range 0..1, inclusive.
Remarks
Example
PERCENTILE({1,2,3,4},0.3)
equals 1.9