MIN
The MIN
function in Google Sheets is a powerful tool to extract the smallest value from a given set of numbers. Whether you're comparing sales data, student grades, or tracking daily expenses, the MIN
function simplifies the task. Dive into our comprehensive guide to master its application.
Function Syntax and Parameters
Syntax: MIN(value1, [value2, ...])
Parameters:
value1
: The first value or range to consider for the minimum.value2, ...
: [Optional] Additional numbers or ranges to consider.
Step-by-Step Tutorial
-
Using
MIN
with individual numbers:- Example:
=MIN(3, 10, 5)
- Result:
3
- Example:
-
Using
MIN
with a range of cells:- Example: If
A1:A5
has the values5, 10, 3, 8, 7
, then=MIN(A1:A5)
will return3
.
- Example: If
Video Example
Use Cases and Scenarios
- Budget Tracking: Find the lowest expense in a month.
- Sales Analysis: Identify the product with the lowest sales figure.
- Sports Statistics: Determine the lowest score in a golf tournament.
Related Functions
MAX
: Find the largest value in a set.MINA
: LikeMIN
, but it evaluates text and other data types as well.