0% found this document useful (0 votes)
34 views

Excel Formula - Max Value in Given Month - Exceljet

The document discusses how to find the maximum value in a given month using the MAXIFS function or alternative formulas. It explains that the MAXIFS function uses criteria to bracket dates between the first and last day of the month. It also provides formulas to retrieve the client associated with the maximum value using INDEX and MATCH functions.

Uploaded by

sprivatester
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
34 views

Excel Formula - Max Value in Given Month - Exceljet

The document discusses how to find the maximum value in a given month using the MAXIFS function or alternative formulas. It explains that the MAXIFS function uses criteria to bracket dates between the first and last day of the month. It also provides formulas to retrieve the client associated with the maximum value using INDEX and MATCH functions.

Uploaded by

sprivatester
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

Cart Login

Quick, clean, and to the point


Training
Videos
Functions
Formulas
Shortcuts
Blog

Search... Search

Max value in given month

Generic formula 

= MAXIFS(sales,dates,">=" & G4,dates,"<=" & EOMONTH(G4,0))

Summary 
To find the maximum value in a given month, you can use the MAXIFS function or one
of the other alternatives below. In the example shown, the formula in G5 is:

= MAXIFS(sales,dates,">=" & G4,dates,"<=" & EOMONTH(G4,0))

Where sales (D5:D15), dates (B5:B15) and values (C5:C15) are named ranges.

Explanation 
The MAXIFS function can find the maximum value in a range based on one or more
criteria. In the example shown, we are using MAXIFS to find the max sales value based
in a given month by "bracketing" dates between the first day of the month and the last
day of the month. The first criteria checks if dates are greater than or equal to the first
of the month:

dates,">=" & G4,dates // first of month

Note: we are assuming date in G4 is a "first of month" date.

The second criteria checks if dates are less than or equal to the last of the month,
calculated with the EOMONTH function:

dates,"<=" & EOMONTH(G4,0) // last of month

When both criteria return TRUE, the date is in the given month, and MAXIFS returns
the max of value of dates that meet criteria.

Alternative formulas

If your version of Excel doesn't include the MAXIFS function, there are other options.
One option is a simple array formula based on the MAX and IF functions:

{ = MAX(IF(TEXT(dates,"my") = TEXT(G4,"my"),sales))}

Note: This is an array formula and must be entered with with control + shift + enter.
Another option is to use the AGGREGATE function like this:

= AGGREGATE(14,6,sales / (TEXT(dates,"my") = TEXT(G4,"my")),1)

Both options above use a simpler method of testing dates based on the TEXT function
which uses a number format to extract the month and year from a date. The TEXT
function can't be used like this inside the MAXIFS function, because MAXIFS requires a
range. These alternative approaches are explained in more detail here.

The max client

To retrieve the client associated with the max value in a given month, the the formula
in G6 is:

{ = INDEX(clients,MATCH(1,(sales = G5) *
(TEXT(dates,"my") = TEXT(G4,"my")),0))}

This is an array formula and must be entered with with control + shift + enter.

The idea here is that we already know the max value in a month (G5) and we can use
that value as a "key" to lookup the client. Note we must repeat the logic used to isolate
values in the given month, in order to avoid a false match in a different month.

Like the alternatives mentioned above, this formulas also uses a simplified test for
dates based on the TEXT function. Read more about INDEX and MATCH with multiple
criteria here.

For an all-in-one formula, replace G5 with one of the formula options explained above
for determining the max value in a given month.

Author 
Dave Bruns

Related formulas 

You might also like