The PERCENTILE.EXC function returns the value at a given percentile of a dataset, exclusive of 0 and 1.

Parts of a PERCENTILE.EXC function

PERCENTILE.EXC(data, percentile)

PartDescription
dataThe array or range containing the dataset to consider.
percentileThe percentile whose value within data will be calculated and returned.

Sample formulas

PERCENTILE.EXC(A2:A100,0.33)

PERCENTILE.EXC(A2:A100,A2)

Notes

  • The value returned by PERCENTILE.EXC is not necessarily a member of data as this function interpolates between values to calculate the alpha percentile.
  • The percentile must be between 0 and 1, exclusive.
  • Different from PERCENTILE.INC, PERCENTILE.EXC calculates percentile based on a percentile range exclusive of 0 and 1.

Examples

AB
1data
215
320
435
540
650
ABCD
1PercentileResultFormula
20.15#NUM!=PERCENTILE.EXC(A2:A6, B2)
30.426=PERCENTILE.EXC(A2:A6, B3)
40.535=PERCENTILE.EXC(A2:A6, B4)
50.848=PERCENTILE.EXC(A2:A6, B5)
60.9#NUM!=PERCENTILE.EXC(A2:A6, B6)
  • PERCENTILE: Returns the value at a given percentile of a dataset.
  • QUARTILE: Returns a value nearest to a specified quartile of a dataset.
  • MEDIAN: Returns the median value in a numeric dataset.
  • QUARTILE.EXC: The QUARTILE.EXC function returns value nearest to a given quartile of a dataset, exclusive of 0 and 4.