Formula Generator - SMALL function
The SMALL function returns the nth smallest element from a data set, where n is user-defined. It is commonly used to find the kth smallest or largest value in a range of cells.How to generate an SMALL formula using AI.
To get the SMALL formula, you could ask the AI chatbot something like: "What formula can I use to find the nth smallest value in a range of data in Excel?"
SMALL formula syntax.
The SMALL function in Excel is used to find the "nth" smallest value in a range of data. The syntax for the SMALL function is: SMALL(array, k) - "array" refers to the range of cells or array of values from which you want to find the smallest value. - "k" is the position of the smallest value you want to retrieve. It can be a positive integer or a cell reference containing a positive integer. The SMALL function returns the "kth" smallest value from the array. For example, if you have a range of numbers in cells A1 to A10 and you want to find the second smallest value, you can use the formula "=SMALL(A1:A10, 2)". Note that if there are duplicate values in the array, the SMALL function will return the smallest value that matches the position specified by "k".
Finding the 3rd smallest value in a data set
This use case demonstrates how to use the SMALL function to find the 3rd smallest value in a data set.
SMALL(A1:A10, 3)
Calculating the median of a data set
This use case demonstrates how to use the SMALL function to calculate the median of a data set.
SMALL(A1:A10, CEILING(COUNT(A1:A10)/2, 1))
Finding the top 5 highest values in a data set
This use case demonstrates how to use the SMALL function to find the top 5 highest values in a data set.