Using the MIN Function in Google Sheets vs. SMALL Function

Published on

We typically use the MIN function to return the minimum value between two values, but you can apply it to a range or multiple ranges.

Other functions in Google Sheets that can help you find minimum values include QUERY, SORTN, SMALL, DMIN, MINIFS, and MINA.

The closest ones to MIN are MINA and SMALL, so I’ll also explain how they differ from the MIN function.

MIN Function: Syntax, Arguments, and Examples

Syntax:

MIN(value1, [value2, …])
  • value1 – The first value or range, e.g., 50, A1, or A1:A100.
  • value2, ... – Additional values or ranges, e.g., 100, B1, or B1:B100.

When using ranges in value1 or value2, or both, the dimensions do not need to be the same.

Examples of the MIN Function:

  • =MIN(A1, B1) – Returns 50 if either A1 or B1 contains 50 and the other contains 100.
  • =MIN(A1:A100) – Returns the smallest value in the range A1:A100.
  • =MIN(A1:A100, B10:B50) – Returns the smallest value in the combined ranges A1:A100 and B10:B50.

Additional Tips: Differences Between MIN, MINA, and SMALL

The MIN function will exclude text values from the calculation. Use the MINA function to include text values and assign them a value of 0.

When you use a range with MIN, such as =MIN(A1:A100), you can replace it with the following SMALL formula:

=SMALL(A1:A100, 1)

This formula returns the nth smallest value in the range, where 1 specifies the smallest value. The advantage of using SMALL is that you can specify the position (n) of the smallest value you want to retrieve.

Can the MIN Function Return the First N Smallest Values?

Nope! As mentioned, the MIN function is typically used to find the minimum value between two values or within a column or row.

To return the first N smallest values, you can use functions such as SORTN, QUERY, or FILTER combined with SMALL.

I recommend using SORTN because it can remove duplicate values while finding the smallest n values.

The following formula returns the 5 smallest values in column A:

=SORTN(A:A, 5, 0, 1, 1)

The following formula returns the 5 smallest values in column A, excluding duplicates:

=SORTN(A:A, 5, 2, 1, 1)

With these additional tips, we conclude this tutorial on the MIN function. Have a look at the resources below.

Resources

Prashanth KV
Prashanth KV
Your Trusted Google Sheets and Excel Guide Prashanth KV brings a wealth of experience in Google Sheets and Excel, cultivated through years of work with multinational corporations in Mumbai and Dubai. As a recognized Google Product Expert in Docs Editors, Prashanth shares his expertise through insightful blogging since 2012. Explore his blog for practical tips and guidance on maximizing your spreadsheet skills.

Hierarchical Number Sorting in Excel with Modern Functions

A hierarchical numbering system in Excel allows you to organize data into a clear,...

Dynamic Formula to Sum Every 7 Rows in Excel

To sum every 7 rows, you can use either a drag-down formula or a...

How to Extract Numbers from Text in Excel with Regex

You can use the REGEXEXTRACT or REGEXREPLACE functions to easily extract numbers from text...

Using OFFSET and MATCH Together in Google Sheets: Advanced Tips

One powerful and flexible way to look up values is by combining the OFFSET...

More like this

Using OFFSET and MATCH Together in Google Sheets: Advanced Tips

One powerful and flexible way to look up values is by combining the OFFSET...

Running Count with Structured References in Google Sheets

Running a count with structured references is achievable in Google Sheets tables using the...

Running Total with Structured Table References in Google Sheets

You can use two types of formulas to create a running total with structured...

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.