Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Calculating Average Daily Balances

I have a simple checkbook ledger in Excel 2007.

I want to compute the Average Daily Balance. This is much harder than
it appears...

I have my entry dates in column C
I have my actual balance in column H
(I also have credits in column F, debits in column G, if it helps)

The checkbook ledger is active, so the actual balance may or may not
change on any given day; average daily balance should change every
day. I had thought about calculating the number of days from first
entry date to today() and dividing into the current balance, but this
does not account for all the days in between that have no actual
entries.

For example:

DATE BALANCE
10/29/08 100.00
11/2/08 9.00
11/10/08 45.00

The average daily balance is $40.75, calculated manually. Calculated
by doing the following math:
(100 * 4 days) + (9 * 8 days) + (45 * 4 days) / 16 days
tomorrow when i log in (11/14/08) the avg daily balance should read:
$41 assuming the balance hasn't changed.


How do I get this into an excel formula?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,346
Default Calculating Average Daily Balances

Hi,

Suppose the first day of the month is on line 2 so the balance is in cell
H2, then in I2 enter the following formula:

=AVERAGE(H$2:H2)

Note the $ sign. Copy this formula down as far as you want. The latest
balance will show all the way down from the last day entered, so you can
modify the formula to read:

=IF(H2="","",AVERAGE(H$2:H2))

If this helps, please click the Yes button

Cheers,
Shane Devenshire

" wrote:

I have a simple checkbook ledger in Excel 2007.

I want to compute the Average Daily Balance. This is much harder than
it appears...

I have my entry dates in column C
I have my actual balance in column H
(I also have credits in column F, debits in column G, if it helps)

The checkbook ledger is active, so the actual balance may or may not
change on any given day; average daily balance should change every
day. I had thought about calculating the number of days from first
entry date to today() and dividing into the current balance, but this
does not account for all the days in between that have no actual
entries.

For example:

DATE BALANCE
10/29/08 100.00
11/2/08 9.00
11/10/08 45.00

The average daily balance is $40.75, calculated manually. Calculated
by doing the following math:
(100 * 4 days) + (9 * 8 days) + (45 * 4 days) / 16 days
tomorrow when i log in (11/14/08) the avg daily balance should read:
$41 assuming the balance hasn't changed.


How do I get this into an excel formula?

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
Daily Average yclhk Excel Discussion (Misc queries) 7 October 9th 09 11:16 AM
Calculating once, daily EO Excel Programming 2 June 25th 08 10:07 PM
daily average JBoulton Excel Worksheet Functions 12 January 20th 05 11:13 PM
excel template for calculating trial balances and adjusting entri. yesterdaytoday11 Excel Worksheet Functions 2 November 24th 04 06:25 PM
How to link endings balances to beginning balances on different sh judyskiskd Excel Worksheet Functions 1 October 28th 04 07:21 PM


All times are GMT +1. The time now is 09:58 AM.

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"