SMALL
The SMALL
function in Google Sheets returns the nth smallest element from a data set, where n is user-defined. It is a useful tool for analyzing data and extracting specific values based on their position in a dataset.
Function Syntax and Parameters
Syntax: SMALL(data, n)
Parameters:
data
: The data set from which to extract the nth smallest value.n
: The position of the value to be extracted.
Step-by-Step Tutorial
- Using
SMALL
with a range of cells:- Example: If
A1:A5
has the values5, 10, 3, 8, 7
and you want to extract the 2nd smallest value, you can use the formula=SMALL(A1:A5, 2)
, which will return5
.
- Example: If
Use Cases and Scenarios
- Data Analysis: Extract the lowest price from a list of products.
- Ranking: Determine the nth place finisher in a race.
- Grades: Find the nth lowest grade in a class.
Related Functions
LARGE
: Find the nth largest element from a data set.