How to get AVERAGE of 3 previous sheets automatically when you create a new sheet

shahdelsol

Active Member
Joined
Jul 21, 2009
Messages
276
Office Version
  1. 365
Platform
  1. Windows
I am trying to get AVERAGE of 3 previous sheets of the same cells to the left of the last sheet on a workbook every time I am creating a new sheet. Can you do this by formula? I feel like you can't do this unless you manually update the formula each time you create a new sheet. Does anyone know if there is a way to do this by formula as it gets updated automatically when a new sheet created? If not how can this be done through VBA. Let's say I am looking for the average of L58 of the 3 previous sheets to the left of the last sheet.
I appreciate anyone who can help.
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
I have tried the following code but it didn't work. To add for more clarification, the sheets have been named with the month and the year like (Jul 2018, Aug 2018....) and what I am trying to do is to get average of 3 cells of the 3 previous sheets or 3 moths in another word. Every month I copy and create a new sheet from template and want to be able to put a formula in the cell that gives AVERAGE based on 3 previous sheets (months).


Code:
[/FONT][/COLOR][COLOR=#222222][FONT=Verdana] [/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]     [/FONT][/COLOR][COLOR=#222222][FONT=Verdana]Dim sh1 As Worksheet[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]     Dim sh2 As Worksheet[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]     Dim sh3 As Worksheet[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]    [/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]     [/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]     Set sh1 = Worksheets(Worksheets.Count - 1)[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]     Set sh2 = Worksheets(Worksheets.Count - 2)[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]     Set sh3 = Worksheets(Worksheets.Count - 3)[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]     [/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]     Range("L59").Value = "= AVERAGE(sh1.range (""L58""), sh2.range(""L58""), sh3.range(""L58""))"[/FONT][/COLOR][COLOR=#222222][FONT=Verdana]




I am trying to get AVERAGE of 3 previous sheets of the same cells to the left of the last sheet on a workbook every time I am creating a new sheet. Can you do this by formula? I feel like you can't do this unless you manually update the formula each time you create a new sheet. Does anyone know if there is a way to do this by formula as it gets updated automatically when a new sheet created? If not how can this be done through VBA. Let's say I am looking for the average of L58 of the 3 previous sheets to the left of the last sheet.
I appreciate anyone who can help.
 
Upvote 0
Given that your sheet names are sequential dates, there are a couple ways you can do this.

ABCD
1
2Oct 201812.3333312.33333

<tbody>
</tbody>
Oct 2018

Worksheet Formulas
CellFormula
A2=TRIM(RIGHT(SUBSTITUTE(CELL("filename",A1),"]",REPT(" ",200)),50))
B2=(INDIRECT("'"&TEXT(EOMONTH(DATEVALUE(1&A2),-1),"mmm yyyy")&"'!L58")+
INDIRECT("'"&TEXT(EOMONTH(DATEVALUE(1&A2),-2),"mmm yyyy")&"'!L58")+
INDIRECT("'"&TEXT(EOMONTH(DATEVALUE(1&A2),-3),"mmm yyyy")&"'!L58")
)/3
C2=Avg3Prev(L58)

<tbody>
</tbody>

<tbody>
</tbody>



If you use straight formulas, enter the A2 formula. This gives the name of the current sheet. Then by using date functions to subtract 1, 2, and 3 from the month, we can use INDIRECT to get the value from the last 3 sheet names.

If you want to use VBA, you can use a function, like the C2 formula. Here's the code:

Code:
Function Avg3Prev(ByRef target As Range)
Dim sn As String, s2 As String, i As Long

    sn = target.Parent.Name
    For i = -1 To -3 Step -1
        s2 = Evaluate("TEXT(EOMONTH(DATEVALUE(""1" & sn & """)," & i & "),""mmm yyyy"")")
        Avg3Prev = Avg3Prev + Sheets(s2).Range(target.Address)
    Next i
    Avg3Prev = Avg3Prev / 3
        
End Function
It shouldn't be too hard to adapt to a regular procedure if you want. Hope this helps!
 
Last edited:
Upvote 0
I'm not sure why you are using both L59 & L58? I thought you wanted the formula to calculate the same cell the formula is in, but on the 3 previous sheets. If that is the case, you could try this (vba) user-defined function. To implement ..
1. Right click the sheet name tab and choose "View Code".
2. In the Visual Basic window use the menu to Insert|Module
3. Copy and Paste the code below into the main right hand pane that opens at step 2.
4. Close the Visual Basic window.
5. Enter the formula as shown in the screen shot below*.
6. Your workbook will need to be saved as a macro-enabled workbook (*.xlsm)

* The default is to use the previous 3 sheets but if you wanted to average a different number of sheets, use the optional argument like in cell L59 below

Note that function does not work back from the last worksheet in the workbook, but from the sheet the formula is in, which may or may not be the same thing.
Also the function will only update when any cell on that worksheet re-calculates.

Code:
Function AvPrev(Optional N As Long = 3) As Variant
  Dim Vals As Variant
  Dim i As Long, CurrIdx As Long
  Dim sAdr As String
  
  Application.Volatile
  CurrIdx = Application.Caller.Parent.Index
  sAdr = Application.Caller.Address
  ReDim Vals(1 To N) As Variant
  For i = 1 To N
    Vals(i) = Sheets(CurrIdx - i).Range(sAdr).Value
  Next i
  AvPrev = Application.Average(Vals)
End Function


Excel Workbook
L
5813.6667
5937.5
Sheet13
 
Upvote 0
This is great. I like the formula much better and it does exactly what I am looking for. I keep VBA code for future reference. Thank you so much!

If you use straight formulas, enter the A2 formula. This gives the name of the current sheet. Then by using date functions to subtract 1, 2, and 3 from the month, we can use INDIRECT to get the value from the last 3 sheet names.
 
Last edited by a moderator:
Upvote 0
I appreciate your response. I keep your vba code for future reference. Indirect formula by Eric did what I was exactly looking for. Thanks


you could try this (vba) user-defined function.
 
Last edited by a moderator:
Upvote 0
I appreciate your response. I keep your vba code for future reference.
You're welcome.

BTW, best not to fully quote long posts as it makes the thread harder to read/navigate. If you want to quote, quote small, relevant parts only. So I have cut down the quotes in your posts. :)
 
Upvote 0
Glad we could help. I was playing around and found a shorter version of the B2 formula:

=AVERAGE(SUBTOTAL(1,INDIRECT("'"&TEXT(EOMONTH(DATEVALUE(1&A2),{-1,-2,-3}),"mmm yyyy")&"'!L58")))
 
Upvote 0
You're welcome.

BTW, best not to fully quote long posts as it makes the thread harder to read/navigate. If you want to quote, quote small, relevant parts only. So I have cut down the quotes in your posts. :)

Your note taken. Thanks again.
 
Upvote 0

Forum statistics

Threads
1,215,839
Messages
6,127,196
Members
449,368
Latest member
JayHo

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