search
HomeTopicsexcelMAXIFS function in Excel – find max value with multiple criteria

This tutorial demonstrates how to use Excel's MAXIFS function to efficiently find the maximum value based on specified conditions. Before MAXIFS, users relied on complex MAX IF array formulas. This new function simplifies this process significantly.

Excel MAXIFS Function: Syntax and Basic Usage

The MAXIFS function identifies the largest numeric value within a range, subject to one or more criteria. Its syntax is:

MAXIFS(max_range, criteria_range1, criteria1, [criteria_range2, criteria2], ...)

Where:

  • max_range: The cell range containing the values from which to find the maximum.
  • criteria_range1: The first range to evaluate against criteria1.
  • criteria1: The condition applied to criteria_range1. This can be a number, text, or expression.
  • criteria_range2, criteria2,...: (Optional) Additional ranges and their corresponding criteria. Up to 126 pairs are supported.

MAXIFS is available in Excel 2019, Excel 2021, and Microsoft 365 (Windows and Mac).

For example, to find the tallest football player (heights in D2:D11, sports in B2:B11):

=MAXIFS(D2:D11, B2:B11, "football")

For greater flexibility, specify the sport in a cell (e.g., G1):

=MAXIFS(D2:D11, B2:B11, G1)

MAXIFS function in Excel – find max value with multiple criteria

Important: max_range and criteria_range must be the same size and shape; otherwise, a #VALUE! error results.

Excel MAXIFS: Formula Examples

MAXIFS is straightforward but has nuances. The following examples illustrate its capabilities:

1. Multiple Criteria:

To find the tallest junior basketball player:

  • max_range: Heights (D2:D11)
  • criteria_range1: Sports (B2:B11)
  • criteria1: "basketball" (or cell G1)
  • criteria_range2: School type (C2:C11)
  • criteria2: "junior" (or cell G2)

Formula (hardcoded criteria):

=MAXIFS(D2:D11, B2:B11, "basketball", C2:C11, "junior")

Formula (using cell references):

=MAXIFS(D2:D11, B2:B11, G1, C2:C11, G2)

MAXIFS function in Excel – find max value with multiple criteria

For reusable formulas, use absolute references (e.g., $D$2:$D$11).

MAXIFS function in Excel – find max value with multiple criteria

To find the name of the tallest player, combine MAXIFS with INDEX and MATCH:

=INDEX($A$2:$A$11, MATCH(MAXIFS($D$2:$D$11, $B$2:$B$11, G1, $C$2:$C$11, G2), $D$2:$D$11, 0))

MAXIFS function in Excel – find max value with multiple criteria

2. Logical Operators:

Use logical operators (>, =, ) for numeric criteria. Enclose operators and numbers in quotes (">=14"). For cell references, concatenate (e.g., ">"&G1).

To find the max height for boys aged 13-14 (age in column C):

=MAXIFS(D2:D11, C2:C11, ">=13", C2:C11, " or using cell references G1 and H1: <code>=MAXIFS(D2:D11, C2:C11, ">="&G1, C2:C11, "

MAXIFS function in Excel – find max value with multiple criteria

To exclude volleyball:

=MAXIFS(D2:D11, B2:B11, "volleyball") or using cell reference G1: =MAXIFS(D2:D11, B2:B11, ""&G1)

MAXIFS function in Excel – find max value with multiple criteria

3. Wildcard Characters:

Use ? (any single character) and * (any sequence) for partial matches.

To find the tallest player in games ending in "ball":

=MAXIFS(D2:D11, B2:B11, "*ball") or using cell reference G1: =MAXIFS(D2:D11, B2:B11, "*"&G1)

MAXIFS function in Excel – find max value with multiple criteria

4. Date Ranges:

Dates are serial numbers. Use date formats Excel understands (e.g., "1-Jan-2004", "1/1/2004", or the DATE function).

To find the max height for those born in 2004 (birth date in column C):

=MAXIFS(D2:D11, C2:C11, ">="&DATE(2004,1,1), C2:C11, " or using cell reference G1: <code>=MAXIFS(D2:D11, C2:C11, ">="&DATE(G1,1,1), C2:C11, "

MAXIFS function in Excel – find max value with multiple criteria

5. OR Logic with Multiple Criteria:

MAXIFS uses AND logic. For OR logic, use nested MAXIFS functions with MAX:

=MAX(MAXIFS(D2:D11, B2:B11, "basketball"), MAXIFS(D2:D11, B2:B11, "football")) or using cell references F1 and H1: =MAX(MAXIFS(D2:D11, B2:B11, F1), MAXIFS(D2:D11, B2:B11, H1))

MAXIFS function in Excel – find max value with multiple criteria

Key Considerations for Excel MAXIFS:

  1. Handles one or multiple criteria.
  2. Uses AND logic by default.
  3. max_range and criteria_range must be the same size and shape.
  4. Case-insensitive for text criteria.
  5. Use absolute references when copying formulas.
  6. Correct criteria syntax is crucial (use quotes appropriately).
  7. Available in Excel 2019 and later.

This comprehensive guide empowers you to leverage the power of the MAXIFS function for efficient data analysis in Excel.

The above is the detailed content of MAXIFS function in Excel – find max value with multiple criteria. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How to create timeline in Excel to filter pivot tables and chartsHow to create timeline in Excel to filter pivot tables and chartsMar 22, 2025 am 11:20 AM

This article will guide you through the process of creating a timeline for Excel pivot tables and charts and demonstrate how you can use it to interact with your data in a dynamic and engaging way. You've got your data organized in a pivo

how to do a drop down in excelhow to do a drop down in excelMar 12, 2025 am 11:53 AM

This article explains how to create drop-down lists in Excel using data validation, including single and dependent lists. It details the process, offers solutions for common scenarios, and discusses limitations such as data entry restrictions and pe

Can excel import xml filesCan excel import xml filesMar 07, 2025 pm 02:43 PM

Excel can import XML data using its built-in "From XML Data Import" function. Import success depends heavily on XML structure; well-structured files import easily, while complex ones may require manual mapping. Best practices include XML

how to sum a column in excelhow to sum a column in excelMar 14, 2025 pm 02:42 PM

The article discusses methods to sum columns in Excel using the SUM function, AutoSum feature, and how to sum specific cells.

how to make pie chart in excelhow to make pie chart in excelMar 14, 2025 pm 03:32 PM

The article details steps to create and customize pie charts in Excel, focusing on data preparation, chart insertion, and personalization options for enhanced visual analysis.

how to calculate mean in excelhow to calculate mean in excelMar 14, 2025 pm 03:33 PM

Article discusses calculating mean in Excel using AVERAGE function. Main issue is how to efficiently use this function for different data sets.(158 characters)

how to make a table in excelhow to make a table in excelMar 14, 2025 pm 02:53 PM

Article discusses creating, formatting, and customizing tables in Excel, and using functions like SUM, AVERAGE, and PivotTables for data analysis.

how to add drop down in excelhow to add drop down in excelMar 14, 2025 pm 02:51 PM

Article discusses creating, editing, and removing drop-down lists in Excel using data validation. Main issue: how to manage drop-down lists effectively.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools