running average based off month

grifdoogindoggy

New Member
Joined
Aug 27, 2019
Messages
21
Hello, I have a table that I want to keep a running average off of based on month. The table looks like this:

MonthScore
10.92
20.92
30.89
40.91
50.91
60.81
70.88
80.89
90.83
100.86
110.94
120.93

<tbody>
</tbody>

I want to keep a running average from January (1) to month of (10). That is to say, once November comes it will update automatically. I thought I could do this with an average if with a logic function built in, but it wasn't working.


Thank you!
 
Last edited:

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Try:=AVERAGEIF($A$2:$A$13,"<="&MONTH(TODAY()),$B$2:$B$13)

That works great. I'm not familiar with the "",& syntax. If I wanted to base the start of my year off of June (6), how could I build this in to the formula? I know I can just shrink my range parameters, but I just wanted to know how to do it this way as well.

Thank you.
 
Upvote 0
Something like this: =AVERAGEIFS($B$2:$B$13,$A$2:$A$13,"<="&MONTH(TODAY()),$A$2:$A$13,">="&"1/6/2019")
 
Upvote 0

Forum statistics

Threads
1,214,426
Messages
6,119,417
Members
448,895
Latest member
omarahmed1

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