Please Note: This article is written for users of the following Microsoft Excel versions: 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021. If you are using an earlier version (Excel 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Excel, click here: Determining a Simple Moving Average.

Determining a Simple Moving Average

Written by Allen Wyatt (last updated December 24, 2022)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021


3

Jeff needs to create a formula that will return a moving average for a range of cells. He adds data to the worksheet daily and he always want to have an average of the last ten days' information. This always corresponds to the last ten cells in a column.

There are a couple of easy ways you can approach this problem. The solution you choose depends on what you ultimately want to see in the way of an average. For instance, if you want to see how the average changes over time, the best approach is to add an additional column to your worksheet. If the data is in column A (starting in row 2), then you can enter the following formula in cell B11:

=IF(A11>"",AVERAGE(A2:A11),"")

Copy the formula down the column, and you will always have the average of the last ten days shown. As you add new data to column A, the updated moving average appears at the bottom of column B. The advantage is that you can see how the average changes from day to day.

Note that it is important in this approach to place the formula in cell B11, which means that the first 9 cells (B2:B10) will not have a formula in them. This is to be expected, as this is a ten-day moving average. There cannot be any average for the first 9 days, as you don't have a full 10 days to create your first average.

If you don't want to add another column for each day's moving average, you can use a different formula to determine the current moving average. Assuming there are no blanks in column A and that there are more than ten pieces of data in the column, you could use the following formula:

=AVERAGE(OFFSET(A1,COUNTA(A:A)-1,0,-10,1))

The OFFSET function defines the range to average. It looks at the number of cells in column A and selects the last 10 as the desired range.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (8347) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021. You can find a version of this tip for the older menu interface of Excel here: Determining a Simple Moving Average.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Nudging a Graphic

If you need to move a graphic just a little bit in one direction or another, you can do so by using the techniques in ...

Discover More

Printer Name on the Status Bar

The status bar is a great place to display all sorts of information. It might not be the best place to put the name of ...

Discover More

Making Sure Numbers Copy as Numbers

When you copy information from one worksheet to another using a macro, you might not get exactly what you want. This tip ...

Discover More

Professional Development Guidance! Four world-class developers offer start-to-finish guidance for building powerful, robust, and secure applications with Excel. The authors show how to consistently make the right design decisions and make the most of Excel's powerful features. Check out Professional Excel Development today!

More ExcelTips (ribbon)

Averaging a Non-Contiguous Range

Figuring out how to average data that is in a contiguous range of cells is easy. When the data is spread over a group of ...

Discover More

Averaging Values for a Given Month and Year

Excel is often used to analyze data collected over time. In doing the analysis, you may want to only look at data ...

Discover More

An Average that Excludes Zero Values

Excel allows you to use functions and formulas to analyze your data. One way you can analyze your data is to use the ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 2 + 2?

2022-12-24 10:41:19

J. Woolley

According to Microsoft, the syntax for OFFSET is
OFFSET(reference,rows,cols,[height],[width])
where height and width must be positive values (or omitted).
The Tip's formula works even though height is negative:
=AVERAGE(OFFSET(A1,COUNTA(A:A)-1,0,-10,1))
But perhaps it should be changed as follows:
=AVERAGE(OFFSET(A1,COUNTA(A:A)-10,0,10,1))


2022-12-24 10:25:57

J. Woolley

@Mike B
=IF(A11>"",...) appears to be a typo. It should be
=IF(A11<>"",...)


2022-12-24 10:07:41

Mike B

I don't understand what the "IF" condition (A11>"") is supposed to do. For me, it always returns "FALSE". I find that I need to change it to "ISNUMBER(A11)" or "ISBLANK(A11)" to get it to work.


This Site

Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.