Get kth percentile
=PERCENTILE.EXC(array, k)
| Parameter | Description |
|---|---|
array |
Data values. |
k |
A value between 0 and 1 that represents the k:th percentile. |
To use PERCENTILE.EXC, provide a range of values and a number between 0 and 1 for the "k" argument, which represents percent. For example:
=PERCENTILE.EXC(range,.4) // 40th percentile
=PERCENTILE.EXC(range,.9) // 90th percentile
You can also specify k as a percent using the % character:
=PERCENTILE.EXC(range,80%) // 80th percentile
In the example shown, the formula in G5 is:
=PERCENTILE.EXC(scores,E5)