描述
RANK.AVG函数在提供的值数组中返回给定值的统计等级。如果列表中有重复值,则返回平均排名。
语法
RANK.AVG (number,ref,[order])
争论
Argument | 描述 | Required/Optional |
---|---|---|
Number | The number whose rank you want to find. | Required |
Ref | An array of, or a reference to, a list of numbers. Nonnumeric values in Ref are ignored. | Required |
Order | A number specifying how to rank number. | Optional |
Notes
-
如果Order为0(零)或省略,则Excel会将数字排名,就好像ref是按降序排序的列表一样。
-
如果Order为任何非零值,则Excel会将数字排名,就好像ref是按升序排序的列表一样。
-
如果所提供的引用中不存在所提供的编号,则RANK.AVG返回错误值#N/A。
-
如果提供的引用数组中的值为文本值,则RANK.AVG返回错误值#N/A。
适用性
Excel 2010,Excel 2013,Excel 2016
Example
参考链接
https://www.learnfk.com/javascript/advanced-excel-statistical-rankavg-function.html
标签:Required,JavaScript,Excel,number,RANK,无涯,AVG,ref From: https://blog.51cto.com/u_14033984/7588292