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.
In layman language, this chart divides the data into multiple range groups with same interval i.e. 1-5, 5-10… and then plot the data into these groups to find the distribution among these group. So that you may understand, what are the major areas which has large impact or your major data fall. This helps the user to understand the nature of your data
In this article we will learn about VBA code to get computer name. Excel VBA, or Visual Basic for Applications, is a programming language that can be used to automate tasks within the Microsoft Excel…
Learn to reduce excel file size. Tips include removing unnecessary formatting, compressing images, using formulas instead of hardcoded data, and optimizing pivot tables. Clearing unused cells and minimizing data ranges also help. Lastly, consider saving as binary or using third-party add-ins for further compression.
What is Excel Cell Reference? Excel Cell references are the names of cells. A cell reference has a letter and a number. The letter comes from the column (A, B, C…) and the number comes…
SUMIF function is used to get the “total sum” for number of times the criteria across range is met. SUMIF Function has two required arguments.
Introduction Calculate Percentage in Excel :-The term “per cent” comes from the Latin per centum, meaning “by the hundred.” A percentage is a way to show a part of something out of 100. You can…