logo
excelfunctions.org
bookmarks

MINIFS

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

StatisticalModern Excel FunctionsStatistics & Analysis

What it does

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

Syntax

MINIFS(min_range, criteria_range1, criteria1, ...)

Arguments

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

Examples

Min If

Min score for 'B'.

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