Is this the correct way to input the information?
A B C D E
Daily Todays Daily
1 D/M/Y Capital interest Rate Total
2 01/01/2007 1000.00 =B3-B2 0.01 ?
3 02/01/2007 =B2*D2+B2 =B4-B3 0.01
when I stop the function it gives me a negitive # in B3.
And in the Daily interest I receive weird #s when copied
and pasted to the next line. (B,C,D )line 3 to lines 4,5,6,7
If D2 is the daily rate, then the daily interest in C2 is simply based
on the same-day beginning balance in B2. That is, C2 should be:
=B2*D2
The daily total in E2 would be:
=B2+C2
And the next-day beginning balance in B3 is simply =E2.
Alternatively (and better): eliminate either column B or E, and
simply have a column for the ending balance (E). Add a column (B) for
the day's deposits.
By the way, the daily rate is the annual interest rate divided by
365. (Note: Some banks will divide by 366 in leap years.)
In summary:
A1: D/M/Y
B1: Deposit
C1: Daily Interest
D1: Daily Rate
E1: Ending Balance
A2: 01/01/2007
B2: 1000
C2: =B2*D2
D2: =3.65%/365
E2: =B2+C2
A3: =A2+1
B3: blank
C3: =(E2+B3)*D3
D3: =365%/365
E3: =E2+B3+C3
Copy A3
3 down. Note that 3.65% is an example annual interest rate.
A note on rounding. It is unclear when banks round the interest and
the balance: daily; or when it is posted to the account, which is
typically monthly. So the above is merely an estimate.