![]() |
Leading the way in Microsoft Office Development |
| Home | | | Excel | | | Word | | | PowerPoint | | | Consultancy | | | Feedback | | | Contact |
| Microsoft Excel > Functions > Statistical > PERCENTILE |
PERCENTILE(array, k) |
| The Kth percentile of values in an array of numbers. |
| array | The array of values. | |
| k | The percentile value in the range 0..1 (inclusively). |
| REMARKS |
| If "array" is empty or contains more than 8,191 data points, then #NUM! is returned. | ||
| If "k" < 0, then #NUM! is returned. | ||
| If "k" > 1, then #NUM! is returned. | ||
| If "k" is not numeric, then #VALUE! is returned. | ||
| If "k" is not a multiple of 1/(n - 1), then this function interpolates to determine the value at the kth percentile. | ||
| Example 1 - What value would represent the 30% percentile in the array of numbers {1,2,3,4}. | ||
| Example 2 - What value would represent the 33% percentile in the array of numbers {1,2,3,4}. | ||
| Example 3 - What value would represent the 90% percentile in the array of numbers {1,2,3,4}. | ||
| Example 4 - What value would represent the 0% percentile in the array of numbers {1,2,3,4}. | ||
| Example 5 - What value would represent the 100% percentile in the array of numbers {1,2,3,4}. |
| EXAMPLES |
|
| Functions - P | Index - P | Office Online |
| Copyright © 2004-2007 Better Solutions Limited. All Rights Reserved. | Top |