Moving Average

TexEth

New Member
Joined
Jan 24, 2023
Messages
22
Office Version
  1. 365
Platform
  1. Windows
What is the Excel formula to compute the moving average? Thanks

Example:
Region
2000​
2001​
2002​
2003​
2004​
Moving Average (2002-2004)
AL
50​
60​
70​
80​
90​
AK
105​
106​
107​
108​
100​
AR
40​
43​
48​
53​
63​
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
A simple moving average is just an average so the function needed is:
AVERAGE()
To get a moving average you just apply it to successive groups of cells, so for a 3 year moving average you can put this in cell g2 and copy it to h2 and i2
AVERAGE(B2:D2)
This gives you a 3 year moving average for the first line of data
All assuming the first column is A
 
Upvote 0
You confirmed my hunch. I appreciate your time and help.

Thank you!!
 
Upvote 0

Forum statistics

Threads
1,215,382
Messages
6,124,618
Members
449,175
Latest member
Anniewonder

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top