logo
excelfunctions.org
bookmarks

MAXIFS

Returns the maximum value among cells specified by a given set of conditions or criteria.

StatisticalModern Excel FunctionsStatistics & Analysis

What it does

Returns the largest number in a range that meets multiple criteria.

Syntax

MAXIFS(max_range, criteria_range1, criteria1, ...)

Arguments

  • max_range(range) β€” Range to check for max.
  • criteria_range1(range) β€” Range to evaluate.
  • criteria1(criteria) β€” Condition.

Examples

Max If

Max score for 'A'.

FORMULA
=MAXIFS(B2:B5, A2:A5, "A")
RESULT
95
SAMPLE DATA
AB
1GroupScore
2A80
3B70
4A95
5B88