logo
excelfunctions.org
bookmarks

AVERAGEIFS

Returns the average (arithmetic mean) of all cells that meet multiple criteria.

StatisticalStatistics & Analysis

What it does

Averages cells that meet multiple conditions.

Syntax

AVERAGEIFS(average_range, criteria_range1, criteria1, [criteria_range2, criteria2], ...)

Arguments

  • average_range(range) β€” The range to average.
  • criteria_range1(range) β€” First range to check.
  • criteria1(criteria) β€” First condition.

Examples

Multi-condition average

Average Amount for 'East' region and 'Apples'.

FORMULA
=AVERAGEIFS(C2:C6, A2:A6, "East", B2:B6, "Apples")
RESULT
110
SAMPLE DATA
ABC
1RegionProductAmount
2EastApples100
3WestApples200
4EastOranges150
5EastApples120
6NorthApples90