描述

SMALL函数返回数据集中的第k个最小值。使用此函数可以返回数据集中具有特定相对位置的值。

语法

SMALL (array, k)

争论

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

Notes

  • 如果n是数组中数据点的数量,则SMALL(array,1)等于最小值,而SMALL(array,n)等于最大值。

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

  • 如果k≤0或k超过数据点数,则SMALL返回#NUM!错误值。

  • 如果提供的k为非数字,则SMALL返回#VALUE!错误值。

适用性

Excel 2007,Excel 2010,Excel 2013,Excel 2016

Example

Small Function

参考链接

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