Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 683
Default Average Daily Balance

This might be a simple question...but I seem to be struggling to obtain a
formula.
I have a spreadsheet with an opening balance and then multiple rows of
activtity (either deposits or withdrawls) and sometimes there is daily
activity....sometimes we can go weeks without activity
I'm trying to establish a formula that will give me the Average Daily
Balance in the account using the rows of data factoring in the Deposit/
Withdrawl amounts and the dates.
Any suggestions?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 457
Default Average Daily Balance

First, we need to determine what the daily balance is each day. Assuming
starting balance is in F1, with dates in a2:a10, credits in b2:b10, and
debits in c2:c10

Create a list of in e2 downward
formula in F2 is:
=F1+SUMIF(A$2:A$10,E2,B$2:B$10)-SUMIF(A$2:A$10,E2,C$2:C$10)
Copy down as needed.

Running average balance then, in G2:
=AVERAGE(F$1:F2)
Copy down as needed

--
Best Regards,

Luke M
"Brian" wrote in message
...
This might be a simple question...but I seem to be struggling to obtain a
formula.
I have a spreadsheet with an opening balance and then multiple rows of
activtity (either deposits or withdrawls) and sometimes there is daily
activity....sometimes we can go weeks without activity
I'm trying to establish a formula that will give me the Average Daily
Balance in the account using the rows of data factoring in the Deposit/
Withdrawl amounts and the dates.
Any suggestions?



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 683
Default Average Daily Balance

Thanks Luke....but is it possible to do the same thing in one cell without
adding the formula you listed in column E?

"Luke M" wrote:

First, we need to determine what the daily balance is each day. Assuming
starting balance is in F1, with dates in a2:a10, credits in b2:b10, and
debits in c2:c10

Create a list of in e2 downward
formula in F2 is:
=F1+SUMIF(A$2:A$10,E2,B$2:B$10)-SUMIF(A$2:A$10,E2,C$2:C$10)
Copy down as needed.

Running average balance then, in G2:
=AVERAGE(F$1:F2)
Copy down as needed

--
Best Regards,

Luke M
"Brian" wrote in message
...
This might be a simple question...but I seem to be struggling to obtain a
formula.
I have a spreadsheet with an opening balance and then multiple rows of
activtity (either deposits or withdrawls) and sometimes there is daily
activity....sometimes we can go weeks without activity
I'm trying to establish a formula that will give me the Average Daily
Balance in the account using the rows of data factoring in the Deposit/
Withdrawl amounts and the dates.
Any suggestions?



.

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 905
Default Average Daily Balance

"Brian" wrote:
I have a spreadsheet with an opening balance and then multiple
rows of activtity (either deposits or withdrawls)


It would be better to maintain the balance in a separate column next to the
account activity. And I presume you have the date of the account activity
in a separate column. For example, column A for date, column B for activity
(+deposit, -withdrawal), column C for balance after the activity.

Moreover, it would be better if you have only one row per day of activity;
i.e. =deposits-withdrawals. In other words, column B is __net__ activity on
a date in column A.

Then if A1 is the date of the previous month's ending balance and A10 is the
date of the current month's ending balance, the average daily balance is:

=SUMPRODUCT(A2:A10 - A1:A9, C2:C10) / (A10-A1)

formatted as some numeric format (e.g. Number) other than General. If it is
formatted as General, Excel insists on reformatting it as Date :-(.

This presumes that the formula in C2 is =C1+B2, which is copied down through
C10.

Note: Of course, A2 and A10 can be the ending dates of any two periods.
But the point is: you need an entry for the end of each period, even if
there is no activity on that date.


----- original message -----

"Brian" wrote in message
...
This might be a simple question...but I seem to be struggling to obtain a
formula.
I have a spreadsheet with an opening balance and then multiple rows of
activtity (either deposits or withdrawls) and sometimes there is daily
activity....sometimes we can go weeks without activity
I'm trying to establish a formula that will give me the Average Daily
Balance in the account using the rows of data factoring in the Deposit/
Withdrawl amounts and the dates.
Any suggestions?


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Average Daily Balance pwrichcreek Excel Worksheet Functions 6 May 2nd 23 07:45 PM
Daily Average yclhk Excel Discussion (Misc queries) 7 October 9th 09 11:16 AM
Auto Calculating Daily interest on a moving balance? Matt Excel Discussion (Misc queries) 0 February 24th 09 03:40 PM
How to automate daily interest in a balance sheet? JimS Excel Discussion (Misc queries) 0 May 10th 06 07:45 AM
daily average JBoulton Excel Worksheet Functions 12 January 20th 05 11:13 PM


All times are GMT +1. The time now is 12:42 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"