Using a reference to calculate moving average

  • Thread starter Thread starter jtujague
  • Start date Start date
J

jtujague

I have a column that calculates a moving average of the values in the
preceding column and would like to be able to use a reference cell embedded
in the moving average formula so that I can alter the reference cell, say
from 8 to 10, and the formula will adjust from an 8-day moving average to a
10-day moving average. Anyone know how to do this? Your help is greatly
appreciated!
 
One way:

Name your reference cell, say, "days". Then

B10: =AVERAGE(OFFSET(A10,1-days,,days,1))
 
Hi,

Here is another variation:

=AVERAGE(OFFSET(A1,,,F$1))

Where F1 contains the number of days you want in your moving average and A1
is the first cell to average. You can shorten it to

=AVERAGE(OFFSET(A1,,,N))

If you range name cell F1 N.

Here are two longer ways

=AVERAGE(INDIRECT("A"&ROW()&":A"&ROW()+F$1-1))
or
=AVERAGEIFS(D,D,">="&ROW(),D,"<="&ROW()+F$1-1)

(in 2007 where D is the range name of the entire range you want to use the
running average with.)
 
Back
Top