Contextures

Formulas > > MIN and MAX

Excel MIN and MAX Functions

Find lowest and highest numbers with Excel MIN and MAX functions. For minimum and maximum with criteria, use with IF function, to create MIN IF and MAX IF formulas, or use MINIFS and MAXIFS in Excel 365.

MAXIFmultiple criteria

Video: MIN and MAX Functions

To see a quick overview of how you can create MIN, MAX, MIN IF and MAX if formulas in Excel, you can watch this short video.

There are written steps and examples are in the sections below the video.

MIN Function

To find the lowest value (minimum number) in a set of values, use the MIN function.

The MIN function has the following arguments in its syntax:

  • number1 - required
  • number2 to number255 - optional

For each argument, you can enter numbers or names, or arrays, or a worksheet reference where numbers are stored.

If an argument is a reference or array, any empty cells, logical values (true or false), or text values are ignored, when calculating the minimum value.

Note: If the range does not contain any numeric values, the MIN formula returns a zero

MIN Function Example

For example, this MIN formula in column D will find the lowest value in a range of cells, H2:H17

=MIN(H2:H17)

MIN function

MAX Function

To find the highest value (maximum number) in a set of values, use the MAX function.

The Excel MAX function has the following arguments in its syntax:

  • number1 - required
  • number2 to number255 - optional

For each argument, you can enter numbers or names, or arrays, or a worksheet reference where numbers are stored.

If an argument is a reference or array, any empty cells, logical values, or text are ignored, when calculating the maximum value.

Note: If the range does not contain any numeric values, the MAX formula result is zero

MAX Function Example

To find the highest number in a range of cells, use the MAX function. For example, this formula will find the highest value in the range of cells, H2:H17

=MAX(H2:H17)

MAX function

MIN and MAX with Criteria

In Excel 2019, or Excel for Office 365, you can use the MINIFS and MAXIFS functions, shown below, to find a minimum value, or maximum value, based on one or more criteria.

For earlier versions of Excel, the MINIFS and MAXIFS functions are not available, so you can use the MIN IF Formula or the MAXIFS Function shown below.

MINIFS Function

Use the MINIFS function to find the lowest number, based on one or more criteria.

MINIFS has 3 required arguments in its syntax:

  • min_range: The range where the minimum value will be found
  • range1: The first range to check for a criterion
  • criteria1: The first criterion

minifs function arguments

MINIFS - One Criterion

For example, this formula (for Excel 365) finds the minimum quantity for the product name in cell B6.

  • =MINIFS(tblProdCust[Qty], tblProdCust[Product], B4#)

There's a spill formula in cell B4 to create a unique list of products. The MINIFS formula has a spill operator (#) at the end of that cell reference -- B4# -- so the MINIFS results spill down too.

Excel 2019: Spill formulas are not available in Excel 2019. In that version, refer to cell B4, without the spill operator, and copy the formula down manually.

  • =MINIFS(tblProdCust[Qty], tblProdCust[Product], B4)

minifs function arguments

MINIFS - Two Criteria

To use two or more criteria with MINIFS, use the optional arguments for additional criteria ranges and criteria.

MINIFS has optional pairs of arguments in its syntax, for criteria ranges and criteria:

  • range1 to range126: optional ranges to check for a criterion
  • criteria1 to criteria126: optional criteria, for the matching criteria ranges

For example, this formula (for Excel 365) finds the minimum quantity for the customer selected in cell C3, and the product name in cell B6.

  • =MINIFS(tblProdCust[Qty], tblProdCust[Product], B6#, tblProdCust[Cust], $C$3)

There's a spill formula in cell B6 to create a unique list of products. The MINIFS formula refers to that cell with the spill operator -- B6# -- so the MINIFS results spill down too.

Excel 2019: Spill formulas are not available in Excel 2019. In that version, refer to cell B6, without the spill operator, and copy the formula down manually.

  • =MINIFS(tblProdCust[Qty], tblProdCust[Product], B6, tblProdCust[Cust], $C$3)

MINIF multiple criteria

MAXIFS Function

In Excel 2019, or Excel for Office 365, you can use the MAXIFS function to find a maximum value, based on one or more criteria. For earlier versions of Excel, use the MAX IF With Multiple Criteria formula shown below.

MAXIFS has 3 required arguments in its syntax:

  • max_range: The range where the maximum value will be found
  • range1: The first range to check for a criterion
  • criteria1: The first criterion

maxifs function arguments

MAXIFS - One Criterion

MAXIFS has optional pairs of arguments in its syntax, for criteria ranges and criteria:

  • range1 to range126: optional ranges to check for a criterion
  • criteria1 to criteria126: optional criteria, for the matching criteria ranges

For example, this formula (for Excel 365) finds the maximum quantity for the product name in cell B6.

  • =MAXIFS(tblProdCust[Qty], tblProdCust[Product], B4#)

There's a spill formula in cell B6 to create a unique list of products. The MAXIFS formula has a spill operator (#) at the end of that cell reference -- B4# -- so the MAXIFS results spill down too.

Excel 2019: Spill formulas are not available in Excel 2019. In that version, refer to cell B4, without the spill operator, and copy the formula down manually.

  • =MAXIFS(tblProdCust[Qty], tblProdCust[Product], B4)

maxifs function arguments

MAXIFS - Two Criteria

To use two or more criteria with MAXIFS, use the optional arguments for additional criteria ranges and criteria.

For example, this formula (for Excel 365) finds the maximum quantity for the customer selected in cell C3, and the product name in cell B6.

  • =MAXIFS(tblProdCust[Qty], tblProdCust[Product], B6#, tblProdCust[Cust], $C$3)

There's a spill formula in cell B6 to create a unique list of products. The MAXIFS formula refers to that cell with the spill operator -- B6# -- so the MAXIFS results spill down too.

Excel 2019: Spill formulas are not available in Excel 2019. In that version, refer to cell B6, without the spill operator, and copy the formula down manually.

  • =MAXIFS(tblProdCust[Qty], tblProdCust[Product], B6, tblProdCust[Cust], $C$3)

MAXIFmultiple criteria

MIN IF Formula

Although Excel has a SUMIF function and a COUNTIF function, there is no MINIF function. To create your own MINIF, you can combine the MIN and IF functions in an array formula.

In this example, we'll find the lowest value for a specific product in a sales list with multiple products. The formula will be entered in cell D2, then copied down to D5.

MIN IF formula

First, enter the MIN and IF functions, and their opening brackets:

  • =MIN(IF(

Next, select the product names in the sales list, and press the F4 key, to lock the reference.

  • =MIN(IF($G$2:$G$17

Type an equal sign, and click on the cell with the product name criteria. This reference will not be locked.

  • =MIN(IF($G$2:$G$17=C2

Type a comma, then select the quantity cells in the sales list. Press the F4 key, to lock this reference.

  • =MIN(IF($G$2:$G$17=C2,$H$2:$H$17

To finish the formula, type two closing brackets, and then press Ctrl+Shift+Enter to array-enter the formula.

  • =MIN(IF($G$2:$G$17=C2,$H$2:$H$17))

MIN IF formula

In the formula in the Formula Bar, shown above, you can see that curly brackets were automatically added at the start and end of the formula, because it was array-entered.

If you don't see those curly brackets, you pressed Enter, instead of Ctrl + Shift + Enter. To fix it, click somewhere in the formula bar, and press Ctrl + Shift + Enter.

Then, copy the formula down, to the rows below, to see the minimum for each of the products.

MIN IF formula copy

MAX IF Formula

Although Excel has a SUMIF function and a COUNTIF function, there is no MAXIF function. To create your own MAXIF, you can combine the MAX and IF functions in an array formula.

In this example, we'll find the highest value for a specific product in a sales list with multiple products.

MAX IF formula

First, enter the MAX and IF functions, and their opening brackets:

  • =MAX(IF(

Next, select the product names in the sales list, and press the F4 key, to lock the reference.

  • =MAX(IF($G$2:$G$17

Type an equal sign, and click on the cell with the product name criteria. This reference will not be locked.

  • =MAX(IF($G$2:$G$17=C2

Type a comma, then select the quantity cells in the sales list. Press the F4 key, to lock this reference.

  • =MAX(IF($G$2:$G$17=C2,$H$2:$H$17

To finish the formula, type two closing brackets, and then press Ctrl+Shift+Enter to array-enter the formula.

  • =MAX(IF($G$2:$G$17=C2,$H$2:$H$17))

MAX IF formula

In the formula in the Formula Bar, shown above, you can see that curly brackets were automatically added at the start and end of the formula, because it was array-entered.

If you don't see those curly brackets, you pressed Enter, instead of Ctrl + Shift + Enter. To fix it, click somewhere in the formula bar, and press Ctrl + Shift + Enter.

Then, copy the formula down, to the rows below, to see the minimum for each of the products.

MAX IF formula copy

MAX IF With Multiple Criteria

In the previous example, we found the highest quantity for a specific product, so there was just one criterion -- the product name.

You can also use the MAX IF technique with multiple criteria, by including additional IF functions in the formula. For example, if the data includes a customer name, we could find the highest quantity for each product, for a specific customer.

The customer name is entered in cell D1. In cells C4:C7, the product names are listed.

Enter the following formula in cell D4, and array-enter it, by pressing Ctrl+Shift+Enter. Then, copy the formula down to cell D7.

  • =MAX(IF($H$2:$H$17=C4,IF($I$2:$I$17=$D$1,$J$2:$J$17)))

max if customer qty

  • The formula checks column H for product names that match the entry in cell C4.
  • Then, it checks column I for customer names that match the name in cell D1.
  • For those rows, it finds the highest amount in column J.

Get Latest Product Price

If you have a list of product prices and dates, you can use a formula to find the latest pricing date for a specific product:

  • MAXIFS (Excel 365 or Excel 2019)
  • MAX/IF (earlier versions)

Then, use SUMIFS or SUMPRODUCT to get the price for that product, on that date.

Latest Price with MAXIFS Function

In Excel 2019, or Excel for Office 365, you can use this MAXIFS formula, to find the latest price.

In this example, there is a price table with product, customer, date and price.

product customer price table

You could use two formulas in the solution - one to find the latest price, and one to find the price for that date.

This formula in C4 returns the latest date for the selected product and customer:

  • =MAXIFS(tblPrice[Date], tblPrice[Product], A4, tblPrice[Cust], B4)

Next, this formula in cell D4 returns the price for that date, and the selected product and customer:

  • =SUMIFS(tblPrice[Price], tblPrice[Product],A4, tblPrice[Cust],B4, tblPrice[Date],C4)

Or, use this all-in-one formula, in cell D6, to find the price for the latest date:

  • =SUMIFS(tblPrice[Price], tblPrice[Product], A4, tblPrice[Cust], B4, tblPrice[Date], MAXIFS(tblPrice[Date], tblPrice[Product], A4, tblPrice[Cust], B4))

product customer price table

Latest Price with MAX/IF Formula

In this example, there is a price list with product, date and price.

price list with dates

To find the latest price for a specific product, start by using MAX and IF, to get the latest date for that product. The product name -- Pens -- is entered in cell A12.

To find the latest pricing date for that product, enter the following formula in cell B12, and press Ctrl + Shift + Enter:

  • =MAX(IF($A$2:$A$9=A12, $B$2:$B$9))

MIN and IF find latest date

Next, to find the price for that product, on that date, enter the following SUMIFS formula in cell C12:

  • =SUMIFS($C$2:$C$9, $A$2:$A$9,A12, $B$2:$B$9,B12)

SUMIFS finds latest price

The SUMIFS function is available in Excel 2007, and later versions. For earlier versions of Excel, you can use the SUMPRODUCT function:

  • =SUMPRODUCT(($A$2:$A$9=A12) *($B$2:$B$9=B12) *($C$2:$C$9))

SUMIFS finds latest price

MIN IF and MAX IF with a Pivot Table

With some data, an easy way to find the lowest and highest values for a specific item, is to use a pivot table. It automatically creates a list of all the items, and you can show amounts as Min or Max.

This video shows the steps, and there are written instructions below the video.

Pivot Table MIN IF and MAX IF

In the screen shot below, the TotalPrice field has been added twice to the values area.

From this pivot table, you can quickly see the minimum and maximum amounts based on a product name. For example:

  • MIN IF Bran - 48.62
  • MAX IF Pretzels - 97.65

pivot table shows man and max

Pivot Table MINIFS and MAXIFS

With a pivot table, you can also see minimum and maximum amounts based on multiple criteria -- like the Excel's new MINIFS and MAXIFS functions. For example:

  • MINIFS East, Bars - 20
  • MAXIFS West, Snacks - 114

pivot table shows man and max with 2 row fields

Pull MIN and MAX from Pivot Table

If you need to use the Min and Max values from a pivot table in other formulas, use the GetPivotData Function. This video shows how to use the GetPivotData function, and there are written instructions below the video.

Get MINIFS and MAXIFS with GETPIVOTDATA

To pull values from a pivot table, use the GetPivotData Function. In this example, you can select a region name in cell A4, and a category name in cell B4.

This formula is in cell C4, to pull the minimum quantity for the selected region and category:

  • =GETPIVOTDATA("Min Qty",$A$7, "Region",A4, "Category",B4)

This formula is in cell D4, to pull the maximum quantity for the selected region and category:

  • =GETPIVOTDATA("Max Qty",$A$7, "Region",A4, "Category",B4)

getpivotdata function pulls values from pivot table

Get the Sample Files

  1. All Excel Versions: To see the MIN and MAX formulas, you can download the MIN and MAX sample file. The zipped file is in Excel xlsx format, and does not contain macros.
  2. Excel 365 or 2019: To see the MAXIFS and MINIFS formulas, you can download the MINIFS and MAXIFS sample file. The zipped file is in Excel xlsx format, and does not contain macros.
  3. Pivot Table MIN IF and MAX IF: To see the pivot table MIN IF and MAX IF examples, you can download the Pivot Table MIN MAX sample file. The zipped file is in Excel xlsx format, and does not contain macros.

More Tutorials

Functions List

List Matching Items

AVERAGE

CHOOSE

INDEX / MATCH

TEXT

 


Last updated: August 19, 2023 3:41 PM