MINA Function in Excel
The MINA function returns the smallest value in a dataset, including numbers, text, and logical values. Master MINA with practical examples.
=MINA(value1, [value2], ...)Quick Answer
MINA function MINA function is a statistical function in Excel and Google Sheets that returns the smallest value in a dataset, including numbers, text, and logical values. Unlike the MIN function, MINA evaluates text as 0 and logical values as 1 (TRUE) or 0 (FALSE), making it essential for analyzing mixed data types.
=MINA(value1, [value2], ...)- value1 - the first value or range to evaluate for the minimum (required)
- The basic syntax is `=MINA(value1, [value2], ...)` where: - value1 is the first value or range to evaluate for the minimum (required) - value2 allows up to 255 additional values or ranges (optional) MAXA excels at analyzing mixed datasets containing text responses, boolean flags, and numeric values, enabling evaluation of 100% of values in your dataset regardless of type
Practical Examples
Basic Numeric Comparison
Finding the minimum value in a simple numeric dataset
Mixed Numbers and Text
Evaluating a dataset containing both numbers and text values
Logical Values Evaluation
Finding minimum in a dataset with TRUE/FALSE values
Range Reference with Mixed Data
Using MINA with a cell range containing various data types
Error Handling with IFERROR
Preventing errors when MINA encounters problematic data
Common Errors and Solutions
MINA returns #VALUE! error
One or more arguments contain error values that cannot be processed, or invalid data type combinations exist
1. Check the range for error values like #N/A, #REF!, or #DIV/0! 2. Use Find & Replace to locate error cells (Ctrl+F, search for #) 3. Wrap formula in IFERROR: =IFERROR(MINA(range), 0) 4. Fix source data causing errors 5. Use AGGREGATE function as alternative for error-resistant calculations
Implement data validation rules to prevent error values from being entered. Use IFERROR or IFNA in source formulas to trap errors before they reach MINA.
Example:
Excel doesn't recognize MINA
Function name is misspelled, or Excel version doesn't support MINA (very rare, as MINA has been available since Excel 2000)
1. Check spelling - it's MINA not MINIA or MIN A 2. Ensure no extra characters or spaces in function name 3. Verify Excel version (MINA available since Excel 2000) 4. Try retyping the formula from scratch 5. Update Excel if using very old version
Use Excel's formula autocomplete feature by typing =MIN and selecting MINA from the dropdown list
Example:
MINA returns 0 when you expect a different minimum
The dataset contains text values that MINA converts to 0, or contains FALSE logical values
1. Identify text values in your range using ISTEXT function 2. Remove or replace text values before using MINA 3. Use MIN instead if you want to ignore text 4. Use MINIFS with criteria to exclude specific values 5. Filter your data: =MINIFS(range, range, ">0") to exclude text/FALSE
Understand MINA's text-handling behavior. Use MIN for numeric-only data, reserve MINA for intentional mixed-type calculations.
Example:
Best Practices and Pro Tips
Choose MIN vs MINA Wisely
Use MIN for numeric-only datasets to avoid unexpected 0 results from text. Reserve MINA only when you intentionally need to evaluate text and logical values as numbers.
Combine with Data Validation
Set up data validation rules to prevent text entry in numeric columns. This ensures MINA behaves predictably and avoids the text-to-0 conversion issue.
Performance Optimization
For very large datasets (100,000+ cells), MINA can be slower than MIN. If your data is guaranteed numeric, use MIN for better performance.
Empty Cells vs Zero vs Text
Remember: MINA ignores empty cells, treats text as 0, and evaluates actual 0 as 0. This can lead to confusion when comparing results.
Array Formula Alternative
For complex filtering before finding minimum, combine MINA with IF in an array formula. This gives you precise control over which values to evaluate.
Need Help with MINA Function in Excel?
Stop struggling with formula syntax. Use AskFormulas to generate validated formulas instantly with our AI-powered tool.
Example Excel formula:
Related Formulas
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.
The MAXA function finds the maximum value in a dataset, treating text as 0 and TRUE/FALSE as 1/0. Learn how to use MAXA with examples and tips.
Master the MIN function to find minimum values in Excel and Google Sheets. Learn examples, handle errors, and optimize data analysis with this guide.
Master the AVERAGE function with practical examples and error solutions. Learn to calculate mean values and analyze data efficiently in Excel and Sheets.