AVERAGEIFS function is used to get the “average” of values for matching criteria across range.
Mathematical Average is calculated following : = Sum of all values / (divided by) number of items
AVERAGEIFS Function has required arguments i.e. average_range, criteria_range1, criteria1 and Optional arguments i.e. [criteria_range2, criteria2]… We can place add more than one range to include multiple criteria or conditions.
=AVERAGEIFS(average_range,criteria_range1,criteria1,[criteria_range2,criteria2]…)
average_range argument is used to give range/ list of values to calculate average as per below criteria
criteria_range1 argument is used to give the range in which criteria1 needs to find
criteria1 argument is used to give criteria for average. We can give value (example “A”, >10, 50) or cell reference number in this argument
[criteria_range2] optional argument is used to give the ANOTHER range in which criteria2 needs to find
[criteria2] optional argument is used to give criteria2 for average. Value or cell reference number can be given.
Kindly note, we can add multiple criteria in the function by separating them with Comma ( , )
Don’t forget to leave your valuable comments!
If you liked this article and want to learn more similar tricks, please Subscribe us.
The tutorial demonstrates how to find a date any number of days before or after today, counting either all days or only business days.
Today, I’ll show you how to add bullet points in Excel with simple steps and clear images, so you can easily highlight key points in your Excel reports for better clarity and readability. Bullet points…
What is COUNTIFS in Excel? The Microsoft Excel COUNTIFS function counts the number of cells in a range, that meets a single or multiple criteria and adjacent or non-adjacent. As a Statistical function of Excel,…
Create Dynamic Data Validation List When I started my career in working with excel dashboards, I always used to face most common challenge in “Data Validation” technique where I want a smart data validation to avoid all…
This step-by-step tutorial empowers you to leverage Power Query’s robust filtering capabilities. Learn to filter by date, text, numbers, and more, streamlining your workflow and unlocking deeper insights from your data. Watch now and elevate your Excel expertise!
MOD function is used to get the remainder of number that is divided by divisor. MOD Function has two required arguments i.e. number and divisor.