Monthly Mortgage payments for a Semi annual compounding rate
BoniM, thanks for your reply. I use these functions
(PMT(rate,nper,pv,fv,type)CUMIPMT(rate,nper,pv,sta rt_period,end_period,type)CUMPRINC(rate,nper,pv,st art_period,end_period,type)FV(rate,nper,pmt,pv,typ e)PV(rate,nper,pmt,fv,type)
all the time but here in CANADA we have semi annual compounding for mortgages
when the interest rate is fixed for the temr of the mortgage and the NPER for
the PMT is monthly (ie 300) but the compounding period is not monthly it is
semi annual.
"BoniM" wrote:
These functions work on periods determined by you, take for example this
simplified PMT function:
PMT(rate,nper,pv)
Rate is the interest rate per period, Nper is the total number of payments
for the loan, Pv is the present value (amount to be paid back) also known as
the principal.
Pmt function for monthly payment:
=PMT(7.5%/12,360,100000)
where 7.5% is the annual interest rate, divided by 12 to apply the rate for
the period, which in this case is one month, total number of payments is 360
(or 30 years times 12 months) and the loan was for $100,000.
Same function, semi-annual payment:
=PMT(7.5%/2,60,100000)
where 7.5% is the annual interest rate, divided by 2 to apply the rate per
period, 60 is the total number of payments (30 years times 2 payments per
year) and the loan was for $100,000.
In other words, you determine the period in the function. Does that help?
If there is a specific function you would like more info on I'd be happy to
assist.
"Iain" wrote:
Excel provides functions to calculate a variety of numbers for mortgages
(when they have a monthly compounding interest rate) but I cannot find
functions to generate those numbers when the quoted annual rate is compounded
on a semi annual basis.
|