Excel formula for Beginners – How to Average by month in Excel

(Excel examples for Beginners)

In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Average by month in Excel.

 

Excel formula for Beginners – How to Average by month in Excel

Generic formula

=AVERAGEIFS(values,dates,">="&A1,dates,"<="&EOMONTH(A1))

Explanation

To average by month, you can use a formula based on the AVERAGEIFS function, with help from the EOMONTH function. In the example shown, the formula in F4 is:

=AVERAGEIFS(amounts,dates,">="&F5,dates,"<="&EOMONTH(F5,0))

This formula uses the named ranges “amounts” (D5:D104) and “dates” (C5:C104).

How this formula works

The AVERAGEIFS function can average ranges based on multiple criteria. In this case, we configure AVERAGEIFS to average amounts by month using two criteria: (1) match dates greater than or equal to the first day of the month, (2) match dates less than or equal to the last day of the month. If we hard-coded dates for January 2016 into the formula using the DATE function, it would look like this.

=AVERAGEIFS(amounts,dates,">="&DATE(2016,1,1),dates,"<="&DATE(2016,1,31))

But we don’t want to hard-code dates, we want Excel to generate these dates for us. Normally, this is a pain, because if you add month names as text (i.e. “January”, “February”, “March”, etc.) in column F you have to go to extra trouble to create dates you can use for criteria.

However, in this case, we use a simple trick to make things easier: In column F, instead of typing month names, we add actual dates for the first of each month (1/1/2016, 2/1/2016, 3/1/2016, etc.), and use a custom date format (“mmm”) to display the month names.

This makes it easy to build the criteria we need for AVERAGEIFS. To match dates greater than or equal to the first of the month, we use:

">="&E4

And to match dates less than or equal to the last day of the month, we use:

"<="&EOMONTH(E4,0)

EOMONTH automatically returns the last day of the same month because we supply zero for the months argument.

Personal Career & Learning Guide for Data Analyst, Data Engineer and Data Scientist

Applied Machine Learning & Data Science Projects and Coding Recipes for Beginners

A list of FREE programming examples together with eTutorials & eBooks @ SETScholars

95% Discount on “Projects & Recipes, tutorials, ebooks”

Projects and Coding Recipes, eTutorials and eBooks: The best All-in-One resources for Data Analyst, Data Scientist, Machine Learning Engineer and Software Developer

Topics included: Classification, Clustering, Regression, Forecasting, Algorithms, Data Structures, Data Analytics & Data Science, Deep Learning, Machine Learning, Programming Languages and Software Tools & Packages.
(Discount is valid for limited time only)

Disclaimer: The information and code presented within this recipe/tutorial is only for educational and coaching purposes for beginners and developers. Anyone can practice and apply the recipe/tutorial presented here, but the reader is taking full responsibility for his/her actions. The author (content curator) of this recipe (code / program) has made every effort to ensure the accuracy of the information was correct at time of publication. The author (content curator) does not assume and hereby disclaims any liability to any party for any loss, damage, or disruption caused by errors or omissions, whether such errors or omissions result from accident, negligence, or any other cause. The information presented here could also be found in public knowledge domains.

Learn by Coding: v-Tutorials on Applied Machine Learning and Data Science for Beginners

Please do not waste your valuable time by watching videos, rather use end-to-end (Python and R) recipes from Professional Data Scientists to practice coding, and land the most demandable jobs in the fields of Predictive analytics & AI (Machine Learning and Data Science).

The objective is to guide the developers & analysts to “Learn how to Code” for Applied AI using end-to-end coding solutions, and unlock the world of opportunities!

 

Excel formula for Beginners – How to Sum by month in Excel

Excel formula for Beginners – How to Average and ignore errors in Excel

Python Example – Write a Python program to add a month with a specified date