MIN Function in Excel & Sheets
Master the MIN function to find minimum values in Excel and Google Sheets. Learn examples, handle errors, and optimize data analysis with this guide.




=MIN(number1, [number2], ...)
Practical Examples
Basic Price Comparison
Find the lowest price among multiple suppliers for cost optimization
Multi-Range Temperature Analysis
Monitor minimum temperatures across multiple weather stations
Conditional Minimum with Array
Find minimum sales only for specific product category
Date-Based Minimum Finding
Identify the earliest project start date from multiple teams
Error Handling in Data Sets
Calculate minimum while gracefully handling errors in data
Dynamic Range Minimum
Find minimum in an expanding dataset using dynamic ranges
Cross-Sheet Minimum Calculation
Compare minimum values across multiple worksheets
Common Errors and Solutions
MIN function returns #VALUE! error
The function encounters text that cannot be converted to numbers or cell references are invalid
1. Check all referenced cells for non-numeric text 2. Ensure ranges don't include headers 3. Use VALUE() function to convert text numbers 4. Wrap in IFERROR for error handling
Always validate data types before applying MIN. Use Data Validation to restrict inputs to numbers only.
Example:
Excel doesn't recognize the MIN function
Function name is misspelled or there's a syntax error in the formula
1. Check spelling - should be 'MIN' not 'MINIMUM' 2. Ensure formula starts with equals sign (=) 3. Verify parentheses are properly paired 4. Check for extra spaces in function name
Use Formula AutoComplete feature to avoid typos. Always start with = sign.
Example:
MIN returns unexpected or wrong minimum value
Hidden rows, filtered data, or numbers stored as text are affecting the calculation
1. Check for hidden rows with smaller values 2. Clear any active filters 3. Convert text-formatted numbers using VALUE() 4. Look for negative numbers you might have missed 5. Verify date formatting if working with dates
Use SUBTOTAL(105,range) for visible cells only. Always check data formatting.
Example:
MIN function returns blank or zero unexpectedly
All cells in the range are empty, contain text, or the range reference is incorrect
1. Verify range contains numeric values 2. Check if range references are correct 3. Use COUNT to verify numeric cells exist 4. Consider using MINA if you need to include logical values
Always verify data exists before applying MIN. Use conditional statements to handle empty ranges.
Example:
Advanced Tips and Best Practices
When working with datasets over 100,000 rows, consider using MINIFS (Excel 2019+) for conditional minimums instead of array formulas with MIN(IF()). MINIFS is optimized for performance and can be 10x faster. For older versions, ensure your data is sorted and use helper columns to pre-filter data before applying MIN.
Excel stores time as decimal fractions of a day (0.5 = 12:00 PM). When finding minimum times, ensure all cells are formatted consistently as time. To find the earliest time ignoring the date component, use MOD with MIN: =MIN(MOD(A1:A10,1)). This extracts only the time portion for comparison.
MIN evaluates ALL data in the range, including hidden or filtered rows. This can lead to unexpected results when working with filtered lists. Use AGGREGATE(5,5,range) or SUBTOTAL(105,range) to find the minimum of only visible cells. This is crucial for accurate dashboard reporting.
Use MIN to create dynamic data validation rules. For example, prevent users from entering values below the minimum acceptable threshold by setting Data Validation to use a custom formula: =A1>=MIN(Historical_Data). This ensures data quality and prevents errors in downstream calculations.
Choose the right MIN variant: MIN ignores text and logical values. MINA treats TRUE as 1 and FALSE as 0. MINIFS (Excel 2019+) allows multiple criteria for conditional minimums. Use MIN for pure numerical data, MINA when logical values matter, and MINIFS for filtered minimums without array formulas.
Need Help with MIN Function in Excel & Sheets?
Stop struggling with formula syntax. Use AskFormulas to generate validated formulas instantly with our AI-powered tool.
Example Excel formula:
Related Formulas
Master the AVERAGE function with practical examples and error solutions. Learn to calculate mean values and analyze data efficiently in Excel and Sheets.

Master the MAX function to find the largest value in your data. Learn syntax, examples, error handling, and best practices for Excel and Google Sheets.

Master the ROUND function to round numbers to specified decimal places with practical examples and error solutions for Excel and Google Sheets.

Master the SUM function with practical examples and error solutions. Learn how to add numbers, ranges, and multiple criteria efficiently.
