描述

LARGE函数返回数据集中的第k个最大值。您可以使用此功能根据其相对地位选择一个值。

语法

LARGE (array, k)

争论

Argument 描述 Required/Optional
Array The array or range of data for which you want to determine the k-th largest value. Required
K The position (from the largest) in the array or cell range of data to return. Required

Notes

  • 如果n是一个范围内的数据点数,则-

    • LARGE(数组,1)返回最大值。

    • LARGE(array,n)返回最小值。

  • 如果数组为空,则LARGE返回#NUM!错误值。

  • 如果k≤0或k大于数据点数,则LARGE返回#NUM!错误值。

  • 如果指定的k为非数字,则LARGE返回#VALUE!错误值。

适用性

Excel 2007,Excel 2010,Excel 2013,Excel 2016

Example

Large Function

参考链接

https://www.learnfk.com/javascript/advanced-excel-statistical-large-function.html