Returns the k-th percentile of values in a range.
Cette fonction fonctionne de la même façon dans Google Sheets que dans Excel — même syntaxe et mêmes arguments.
PERCENTILE(array, k)The PERCENTILE function calculates the value below which a given percentage of data points fall. It is useful for establishing a threshold or identifying relative standing within a dataset.
=PERCENTILE({1,2,3,4,5}, 0.5)Résultat : 3
Returns the median value of the dataset.
Excel interpolates between the two nearest values to determine the percentile.