Statistical
590 monthly searches
Beginner
3 min read

MIN Formula in Excel - Find Minimum Values & Lowest Numbers

Return the smallest number from any dataset with this function in Excel....

Quick Start

Syntax

=MIN(number1, [number2], ...)

Parameters

number1 - Required. First number, cell reference, or range (e.g., A1, A1:A10, 100). Required.

number2 - Optional. Optional. Additional numbers, ranges, or cells. Up to 255 arguments allowed.

Simplest Example

ABC
1VendorPriceAnalysis
2Vendor A$425
3Vendor B$389
4Vendor C$440
5Vendor D$395
6Lowest:
=MIN(B2:B5)
389

Quick Reference

Find Minimum in Range
=MIN(A1:A10)

Returns the smallest value in range A1 to A10

=MIN(45, 78, 23, 91, ...) → 23

Compare Multiple Ranges
=MIN(A1:A5, C1:C5, E1)

Finds minimum across multiple non-adjacent ranges

=MIN(50, 30, 100, ...) → 30

MIN with Conditional Alert
=IF(MIN(A1:A10)<10, "REORDER", "OK")

Trigger alert if minimum falls below threshold

If lowest value < 10, shows "REORDER"

Entire Column Minimum
=MIN(B:B)

Finds minimum in entire column B (dynamic)

Automatically includes new data added to column

Real-World Examples

Vendor Price Comparison - Find Best Deal

Use this function in Excel to identify the lowest price across multiple vendors, saving money on every purchase order. This pricing strategy is essential for procurement teams, purchasing managers, and supply chain professionals managing vendor relationships and cost optimization. The minimum formula enables instant price comparison for raw materials, office supplies, manufacturing components, or any product category where vendor shopping drives cost savings. Combine with conditional formatting to highlight the best price automatically, or pair with MATCH to identify which vendor offers the minimum price for automated vendor selection.

ABC
1Product: Office ChairVendorQuote
2Supplier A$425
3Supplier B$389
4Supplier C$440
5Supplier D$395
6Best Price:
=MIN(C2:C5)
$389
Pro Tip: Combine MIN with MATCH to identify which vendor has the lowest price: =INDEX(B2:B5, MATCH(MIN(C2:C5), C2:C5, 0))
Pattern: =MIN(price_range) to find the best deal instantly
Inventory Alert System - Monitor Stock Levels

Deploy this function in Excel to track minimum inventory across multiple warehouses, triggering automatic reorder alerts before stockouts occur. This inventory management technique is critical for operations managers, warehouse supervisors, and logistics teams preventing costly stockouts and maintaining optimal inventory levels. The minimum formula identifies the warehouse with lowest stock, enabling proactive redistribution or reordering. Essential for multi-location retailers, distribution centers, and manufacturing facilities where inventory visibility across locations prevents lost sales and ensures product availability for customer orders.

ABCD
1Product: Widget XLWH-1WH-2Alert
2Stock Levels:4512
3Minimum:
=MIN(B2:C2)
12 units
4Status:
=IF(MIN(B2:C2)<20, "REORDER", "OK")
REORDER NEEDED
Pattern: Combine MIN with IF for automated inventory alerts: IF(MIN(stock_range)<threshold, "REORDER", "OK")

Common Mistakes to Avoid

=MIN(A1, A2, A3, A4, A5)Listing individual cells instead of using range notation

❌ The Problem:

  • Inefficient and tedious for large datasets
  • Formula doesn't scale when adding more data
  • Easy to miss a cell and get wrong minimum
  • Hard to maintain and audit

✅ Solution:

=MIN(A1:A5)

Use range notation (A1:A5) instead of listing individual cells. This function in Excel is optimized for ranges - it's cleaner, automatically includes all cells in the range, and scales effortlessly when your data grows. Range references make your formulas more maintainable and professional.

=MIN(A1:A10) when range has errorsNot handling error values in the data range

❌ The Problem:

  • If any cell contains #VALUE!, #REF!, or #DIV/0!, MIN returns that error
  • Entire formula breaks due to one bad cell
  • Difficult to troubleshoot in large datasets
  • Reports fail when they encounter errors

✅ Solution:

=IFERROR(MIN(A1:A10), "No valid data")

Wrap this function in Excel with IFERROR to handle ranges containing errors gracefully. The minimum formula propagates errors by design to alert you of data quality issues. For production reports where errors should be handled, use IFERROR to provide a fallback value or message when the minimum cannot be calculated.

=MIN(A1:A10) expecting text to be treated as zeroAssuming MIN treats text values as zero

❌ The Problem:

  • MIN ignores text completely (doesn't convert to zero)
  • Can give unexpected results if you expect text to equal zero
  • Mixed data types lead to confusion
  • Results differ from MINA function

✅ Solution:

=MINA(A1:A10)

This function in Excel ignores text values entirely - they are not converted to zero. If you need text values treated as zero, use MINA instead. The minimum formula is designed for purely numeric comparisons. Understanding the difference between MIN (ignores text) and MINA (treats text as 0) prevents logic errors in your spreadsheets.

Frequently Asked Questions

Other Statistical Functions

Related Formulas

Master these MIN variants:

Master Excel MIN

From basics to advanced - AI generates perfect formulas instantly.