MINA
The MINA
function in Google Sheets is a powerful tool to extract the smallest numeric value from a dataset. Whether you're comparing sales data, student grades, or tracking daily expenses, the MINA
function simplifies the task. Dive into our comprehensive guide to master its application.
Function Syntax and Parameters
Syntax: MINA(value1, value2)
Parameters:
value1
: The first value or range to consider for the minimum.value2
: [Optional] Additional value or range to consider.
Step-by-Step Tutorial
-
Using
MINA
with individual numbers:- Example:
=MINA(3, 10)
- Result:
3
- Example:
-
Using
MINA
with a range of cells:- Example: If
A1:A5
has the values5, 10, 3, 8, 7
, then=MINA(A1:A5)
will return3
.
- Example: If
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.