ID EN
#Statistical

PERCENTILE.EXC

Excel Functions

Get kth percentile

Syntax

EXCEL
=PERCENTILE.EXC(array, k)

Arguments

Parameter Description
array Data values.
k A value between 0 and 1 that represents the k:th percentile.

Return Value

Calculated percentile for k

Details

The Excel PERCENTILE.EXC function calculates the "kth percentile" for a set of data. The kth percentile is a value below which k percent of values in the data set fall. A percentile calculated with .4 as k means 40% percent of values are less than or equal to the calculated result, a percentile calculated with k = .9 means 90% percent of values are less than or equal to the calculated result. 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: You can also specify k as a percent using the % character: In the example shown, the formula in G5 is: where "scores" is the named range C5:C14.

Examples

Example 1

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:

EXCEL
=PERCENTILE.EXC(range,.4) // 40th percentile
=PERCENTILE.EXC(range,.9) // 90th percentile
Example 2

You can also specify k as a percent using the % character:

EXCEL
=PERCENTILE.EXC(range,80%) // 80th percentile
Example 3

In the example shown, the formula in G5 is:

EXCEL
=PERCENTILE.EXC(scores,E5)

See Also

PERCENTILE.INC SMALL LARGE RANK