thehed said:
Let's say the interest is paid monthly I would like to enter the
Initial amount, interest rate, term, etc. and have a chart showing
value each month.
Do you just need the formulas, or do you also need help with the "chart"? I
am not sure if you really meant "chart" in Excel parlance -- i.e. a graph --
or if you meant to say "table".
The calculation of the periodic (monthly) rate depends on the laws of your
jurisdiction as well as on the terms of the CD.
In the US, the periodic rate is the annual interest rate divided by
compounding frequency. And in the US, some bank CDs compound daily even
though they are paid to the account monthly or at maturity.
Even the maturity date of the CD varies from bank to bank in the US. I have
had a 9-month CD that ran from, say, 1/15/2008 to 10/15/2008; and I have had
a "9-month" CD that ran from 1/15/2008 to 10/11/2008 (270 days).
Consider the simple case: compounded and paid monthly. In that case, here
is a bare-bones implementation of a monthly schedule of account.
A1: initial amount
A2: annual interest rate, entered in the form 1.23%
A3: term, in months
B2: monthly interest rate: =A2/12
D4: date that the CD account is opened
E4: initial amount: =A1
C5: period number: =if(C4<$A$3, C4+1, "")
D5: period date: =if(C5="", "", EDATE($D$4,C5))
E5: monthly balance: =if(C5="", "", E4*(1+$B$2))
Format E5 as Number with 2 decimal places, or some numeric format with 2
decimal places.
Copy C5:E5 down for at least A3 rows. But the formulas are designed to
permit a template of, say, 60 rows (5 years).
If interest compounds daily, but it is paid monthly, the only changes are:
B2: daily interest rate: =A2/365
E5: monthly balance: =if(C5="", "", FV(D5-D4,$B$2,0,-E4))
Programming notes:
1. In E5, you could replace E4*(1+$B$2) with FV($B$2,C5,0,-$A$1).
2. In E5, ou could replace FV(D5-D4,$B$2,0,-E4) with E4*(1+$B$2)^(D5-D4) or
with FV($B$2,D5-$D$3,0,-$A$1).
3. When compounding daily, US banks (et al.) may choose A2/366 instead of
A2/365 in leap years. In that case, instead of $B$2 in E5, use
$A$2/(365+(DAY(DATE(YEAR(D5),3,0))=29)).
Does that answer your question?
----- original message -----