MIN Function

MIN Function in Spreadsheet
The MIN function returns the smallest number in a range of cells. It is used to find the lowest value from a set of numbers — making it essential for identifying minimum sales, lowest expenses, lowest scores, and detecting the smallest values in any dataset.
Introduction
The MIN function is a built-in statistical function in spreadsheets like Microsoft Excel, Google Sheets, and LibreOffice Calc. It instantly finds the smallest value from a range of numbers — saving you the time of manually scanning through data.
Whether you're tracking the lowest daily sale, the minimum inventory level, or the lowest recorded temperature — MIN gives you the answer in one simple formula.
Real-Life Analogy
The MIN function is like a treasure hunter looking for the smallest gem in a pile. It quickly scans through all the numbers and picks out the smallest one — without you having to compare each value manually.
What is the MIN Function?
The MIN function is a built-in statistical function that returns the smallest number from a specified range of cells or arguments.
Built-in Statistical Function
MIN is a standard function available in Excel, Google Sheets, LibreOffice Calc, and Apple Numbers.
Returns the Smallest Number
MIN scans all numeric values and returns the lowest one.
Ignores Non-Numeric Values
Text, blank cells, and logical values (TRUE/FALSE) are automatically ignored — no error is thrown.
=MIN(A1:A10) — Returns the smallest value from cells A1 to
A10.
Syntax of MIN Function
The syntax of the MIN function is simple and consistent across spreadsheet applications.
Arguments Explained
| Argument | Required / Optional | Description |
|---|---|---|
| number1 | Required | First number, cell, or range. |
| number2+ | Optional | Additional numbers, cells, or ranges (up to 255 arguments). |
Syntax Examples
=MIN(A1:A10) → Smallest value in A1 to A10
=MIN(B2:B6, D2:D6) → Smallest across two ranges
=MIN(10, 25, 30, 15, 20) → Smallest of individual numbers = 10
=MIN(A1, B1, C1) → Smallest of three individual cells
=MIN(A:A) → Smallest in the entire column A
How the MIN Function Works
The MIN function works in a straightforward manner: it scans all the numeric values in the specified range and returns the smallest one.
Example — MIN Function in Action
Let's take a real example of student marks across three subjects and find the lowest scores using MIN.
Student Marks Worksheet
| Student | Math | Science | English | Lowest Marks | Result |
|---|---|---|---|---|---|
| Raj | 72 | 81 | 65 | =MIN(B2:D2) | 65 |
| Priya | 88 | 92 | 85 | =MIN(B3:D3) | 85 |
| Amit | 55 | 60 | 48 | =MIN(B4:D4) | 48 |
| Neha | 90 | 85 | 95 | =MIN(B5:D5) | 85 |
| Overall Lowest | =MIN(B2:B5) → 55 | =MIN(C2:C5) → 60 | =MIN(D2:D5) → 48 | =MIN(E2:E5) | 48 |
Explanation of Each Result
- E2: MIN(72, 81, 65) = 65
- E3: MIN(88, 92, 85) = 85
- E4: MIN(55, 60, 48) = 48
- E5: MIN(90, 85, 95) = 85
- E6: Overall lowest among 65, 85, 48, 85 = 48
More Examples of MIN Function
| Formula | Description | Example Result |
|---|---|---|
| =MIN(A1:A10) | Smallest value in A1 to A10 | 12 |
| =MIN(B2:B2) | Smallest in a single cell | 45 |
| =MIN(A1:F1) | Smallest in row 1 | 10 |
| =MIN(A1:A5, C1:C5) | Smallest in two ranges | 8 |
| =MIN(10, 25, 30, 15) | Smallest of individual numbers | 10 |
| =MIN(A:A) | Smallest in entire column A | 5 |
| =MIN(1:1) | Smallest in entire row 1 | 3 |
Example with Different Ranges
Let's see a more complex example involving multiple rows.
| A | B | C | D | E (MIN) | Result | |
|---|---|---|---|---|---|---|
| 1 | 15 | 25 | 35 | 20 | =MIN(A1:D1) | 15 |
| 2 | 8 | 12 | 18 | 16 | =MIN(A2:D2) | 8 |
| 3 | 5 | 9 | 14 | 4 | =MIN(A3:D3) | 4 |
| 4 | 100 | 80 | 60 | 90 | =MIN(A4:D4) | 60 |
| 5 | Overall Minimum | =MIN(E1:E4) | 4 |
- E1: MIN(15, 25, 35, 20) = 15
- E2: MIN(8, 12, 18, 16) = 8
- E3: MIN(5, 9, 14, 4) = 4
- E4: MIN(100, 80, 60, 90) = 60
- E5: MIN(15, 8, 4, 60) = 4 (Overall Minimum!)
Common Uses of MIN Function
Business & Sales
- Find the lowest sales or profit
- Identify lowest-selling product
- Track minimum expenses
- Discover cost-effective options
Academic Analysis
- Find the lowest score or marks
- Identify students needing support
- Find minimum passing score
- Analyze weak areas
Data Analysis
- Detect minimum values in data
- Find outlier lows
- Identify data range
- Baseline measurements
Reports & Dashboards
- Statistical reports and analysis
- KPI monitoring
- Quality control
- Performance benchmarks
Things to Remember
Important Points
- MIN considers only numeric values.
- Text, blank cells, TRUE/FALSE are ignored.
- Works with rows, columns, and multiple ranges.
- Relative reference works when copied.
- You can select range using mouse or type manually.
- Supports up to 255 arguments.
- Displays result in same format as data.
- Works with numbers, dates, and times.
- Available in Excel, Google Sheets, LibreOffice Calc, and Numbers.
Practical Examples
Example 1: Lowest Sales
Cells B2:B31 contain daily sales for a month
Formula in B32: =MIN(B2:B31)
Result: Lowest daily sale amount
Example 2: Lowest Student Score
Cells C2:C50 contain student scores
Formula in C51: =MIN(C2:C50)
Result: The lowest score in the class
Example 3: Multiple Ranges
=MIN(A1:A10, C1:C10, E1:E10)
Result: Smallest value from three separate ranges
Example 4: Minimum Temperature
=MIN(B2:B366)
Result: Lowest temperature recorded in the year
Example 5: With Individual Numbers
=MIN(A1, 100, B2, 50, 200)
Result: Smallest of A1, 100, B2, 50, 200
Related Functions
Excel and Google Sheets offer several related functions for advanced minimum-value calculations.
| Function | Purpose | Example |
|---|---|---|
| MIN | Returns the smallest number | =MIN(A1:A10) |
| MAX | Returns the largest number | =MAX(A1:A10) |
| MINA | Like MIN but counts text as 0 and FALSE as 0 | =MINA(A1:A10) |
| MINIFS | Smallest value that meets multiple conditions | =MINIFS(B1:B10, A1:A10, "Sales", C1:C10, ">100") |
| SMALL | Returns the k-th smallest value | =SMALL(A1:A10, 2) → 2nd smallest |
| LARGE | Returns the k-th largest value | =LARGE(A1:A10, 3) → 3rd largest |
MINIFS Example
Find lowest sales for salesperson "Ravi":
=MINIFS(B2:B10, A2:A10, "Ravi")
SMALL Example
Find the 3rd smallest value in a range:
=SMALL(A1:A10, 3)
MIN vs MAX Comparison
MIN and MAX are complementary functions. Understanding their differences helps you choose the right one.
| Aspect | MIN | MAX |
|---|---|---|
| Purpose | Smallest number | Largest number |
| Direction | Lowest end | Highest end |
| Common Use | Minimum expense, lowest score | Maximum sales, top score |
| Ignores | Text, blank, TRUE/FALSE | Text, blank, TRUE/FALSE |
| Arguments | Up to 255 | Up to 255 |
| Related | SMALL, MINIFS, MINA | LARGE, MAXIFS, MAXA |
Tips for Using MIN Effectively
Best Practices
- Ensure data is in numeric format.
- Use cell references instead of hard-coded numbers.
- Use named ranges for better readability.
- Combine MIN with other functions (IF, INDEX, MATCH).
- Use MINIFS for conditional minimum.
- Use SMALL to find the 2nd, 3rd smallest values.
- Format the result to display appropriately.
- Test with sample data to verify results.
- Use with entire columns for dynamic ranges.
- Watch for outliers that may skew analysis.
Common Mistakes to Avoid
Mistake 1: Numbers Stored as Text
- Text-formatted numbers are ignored
- Wrong result if all values are text
- Convert to number format
Mistake 2: Using Wrong Range
- Selecting incorrect cells
- Excludes important data
- Verify range boundaries
Mistake 3: Confusing MIN with SMALL
- MIN gives the smallest only
- SMALL gives any k-th position
- Use SMALL for 2nd, 3rd, etc.
Mistake 4: Ignoring Empty Cells
- Blank cells don't affect MIN
- But 0 values are included
- Understand your data
Mistake 5: Not Updating Range
- Formula not updated when new data added
- Gives stale results
- Use entire columns or dynamic ranges
Mistake 6: Confusing MIN with MAX
- MIN finds smallest
- MAX finds largest
- Different purposes
Useful Keyboard Shortcuts
| Shortcut | Action |
|---|---|
| Alt + = then edit | Insert AutoSum and change to MIN |
| F2 | Edit active cell |
| F4 | Toggle absolute / relative reference |
| Ctrl + ` | Show / hide formulas |
| Ctrl + D | Fill down |
| Ctrl + R | Fill right |
Did You Know?
Interesting Fact
MIN is one of the most popular functions used in almost every Excel or Google Sheets file! It's the go-to function whenever people need to find the "smallest," "lowest," or "minimum" value in their data.
Frequently Asked Questions
Q1. What does the MIN function do?
The MIN function returns the smallest numeric value from a range of cells, individual cells, or specific numbers.
Q2. What is the syntax of MIN?
The syntax is =MIN(number1, [number2], ...). The first
argument is required; additional arguments are optional.
Q3. Does MIN include text or blank cells?
No. MIN ignores text, blank cells, and TRUE/FALSE. Only numeric values are considered.
Q4. Can I use MIN with multiple ranges?
Yes! For example: =MIN(A1:A5, C1:C5, E1:E5). MIN will find
the smallest value across all ranges.
Q5. What's the difference between MIN and SMALL?
MIN returns only the smallest value. SMALL can return any k-th smallest value (like 2nd or 3rd smallest).
Q6. What's the difference between MIN and MINA?
MIN ignores text and TRUE/FALSE. MINA treats text as 0 and FALSE as 0, which can affect the result.
Q7. How do I find MIN with a condition?
Use MINIFS. For example:
=MINIFS(B1:B10, A1:A10, "Sales") — finds the smallest value
in B where A is "Sales".
Q8. Can MIN work with dates?
Yes! Dates are stored as numbers internally. MIN will return the earliest date in a range.
Q9. How many arguments can MIN take?
MIN can take up to 255 arguments. Each argument can be a number, cell, or range.
Q10. Why is my MIN returning 0?
This can happen when the range contains a 0 value or when all values are 0. Check that at least one cell has the value you expect.
Key Takeaways
- MIN returns the smallest numeric value in a range.
- Syntax:
=MIN(number1, [number2], ...). - Ignores text, blanks, and TRUE/FALSE.
- Supports up to 255 arguments.
- Works with rows, columns, and multiple ranges.
- Use MINIFS for conditional minimum.
- Use SMALL for k-th smallest value.
- Works with numbers, dates, and times.
- MIN and MAX are complementary functions.
- One of the most used spreadsheet functions.
Key Takeaway
The MIN function returns the smallest value in a
range. It makes data analysis easy and accurate.
Whether you're identifying the lowest sale, finding the minimum
expense, or detecting extreme low values — MIN is the perfect tool.
⭐ FIND THE LOWEST, MAKE SMARTER DECISIONS! ⭐
Best of Luck! Practice more examples, think logically,
code confidently. You can do it!
Flowchart → Visual Thinking → Smart Solutions → Better
Results! 🚀
Home & Online Tuition
Learn from an experienced tutor with personalized guidance.
Available Locations
Expert Home & Online Tuition
Personalized one-to-one tuition that focuses on concept building, practical learning, problem-solving skills, and excellent academic performance. Suitable for school students looking for structured, interactive, and result-oriented learning.
Subjects We Teach
Why Choose Our Tuition?
✅ Concept-Based Learning
✅ Practical Examples
✅ Weekly Tests
✅ Doubt Solving Sessions
✅ Practice Worksheets
✅ MCQ & Assignments
✅ Exam Preparation
✅ Flexible Class Timings