earthworm
Well-known Member
- Joined
- May 19, 2009
- Messages
- 773
- Office Version
- 2019
- 2016
- Platform
- Windows
I need to calculate Monthly average Balance
I am able to achive it if i break down the Ending Balance of all dates and then calculate average
Is it possible to calculate average balance between opening balance and endind balance only?
Please look below example
I dont want to break the calculation for each month
I need correct average balance from opening balance and closing balance only instead of breaking it into complete month date
I have 20k+ accounts and need to calculate them in shortest possible info.
I am able to achive it if i break down the Ending Balance of all dates and then calculate average
Is it possible to calculate average balance between opening balance and endind balance only?
Please look below example
I dont want to break the calculation for each month
I need correct average balance from opening balance and closing balance only instead of breaking it into complete month date
I have 20k+ accounts and need to calculate them in shortest possible info.
Cell Formulas | ||
---|---|---|
Range | Formula | |
B4:C34 | B4 | =SUMIF(Sheet1!$A:$A,Sheet2!$A4,Sheet1!D:D) |
G3 | G3 | =D3 |
G4 | G4 | =D34 |
D3 | D3 | =Sheet1!F3*1 |
D4:D34 | D4 | =D3-+C4 |
D35 | D35 | =AVERAGE(D3:D34) |