The MIN function in Excel is a powerful tool designed to return the smallest numeric value from a list of arguments. It is commonly used for data analysis and decision-making processes, making it essential for tasks such as identifying the minimum sales figures, temperatures, or any other numeric data.
Syntax
MIN(number1, [number2], ...)
- number1: The first number, cell reference, or range from which to find the minimum value.
- [number2]: Optional. Additional numbers, cell references, or ranges for evaluating the minimum value.
Example #1
=MIN(10, 20, 5)
This function call computes the smallest number from the provided set, yielding a result of 5.
Example #2
=MIN(A1:A5)
This notation retrieves the minimum value from the range of cells A1 through A5. For example, if the cells contain the values 15, 25, 5, 30, and 10, the result will be 5.
Example #3
=MIN(B1, C1, D1)
In this case, the function evaluates the values in cells B1, C1, and D1 to return the minimum among them. For instance, if the values are 8, 12, and 4, the result would be 4.
Error handling
- VALUE!: This error occurs when the function finds a non-numeric value in the input range. Ensure all inputs are numeric.
- NUM!: This indicates that no numeric values are present in the specified argument list, which can happen if all references are empty or contain text.