PERCENTRANK函数取代了Excel 2010中的PERCENTRANK.INC函数。
描述
该函数以数据集的百分比形式返回数据集中的值的排名。此功能可用于判断数据集中值的相对位置。
语法
PERCENTRANK (array,x,[significance])
争论
| Argument | 描述 | Required/Optional |
|---|---|---|
| Array | The array or range of data with numeric values that defines relative standing. | Required |
| X | The value for which you want to know the rank. | Required |
| Significance |
一个标识返回百分比值的有效位数的值。 如果省略,则PERCENTRANK使用三个数字(0.xxx)。 |
Optional |
Notes
如果x与数组中的值之一不匹配,则PERCENTRANK进行插值以返回正确的百分比等级。
如果数组为空,则PERCENTRANK返回#NUM!错误值。
If significance < 1, PERCENTRANK returns the #NUM! error value.
Example