Thread: 360/365, etc.
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
joel joel is offline
external usenet poster
 
Posts: 9,101
Default 360/365, etc.

The interest formula is

P = A * (1 + I/N)**T

A = Amount
I = Interest
N = number of time periods
T = periods


PMT is just a differnt form of the formula
where rate is interest and nper is the time of the loan

Lets assum interest is 5%

So 365/365 means computing daily interest using 365 days a year for 365 days
I = .05, N = 365, T=365

Rate = .05/365 Nper = 365

So 30/360 means you have a 30 year loan with monthly payments. The interest
rate formula needs to be recalculated at the end of each month for 360 months

Each month the calculation would be
I = .05, N = 360, T=30
assuming interest calculated at 365 days a year. USA rules are 360 days a
year because each month is a constant 30 days. There are 5 or 6 bank
holidays a year

The nper rate need to be calculate using the Interest rate for monthly period
I = .05 N = 360 T = 30 A = 1
The P (The result of the Interest formula) is the effective interest rate
per month

Rate = P Nper = 360 (payments)


So 30/365 means you have a 30 year loan with monthly payments. The interest
rate formula needs to be recalculated at the end of each month for 360 months
but the yearly interest rate being calculated 365 days a year

Each monthly the calculation would be
I = .05, N = 365, T=30
assuming interest calculated at 365 days a year. Non-USA rules are 365 days
a year.

The nper rate need to be calculate using the Interest rate for monthly period
I = .05 N = 365 T = 30 A = 1
The P (The result of the Interest formula) is the effective interest rate
per month

Rate = P Nper = 360 (payments)


The efective interest rate is the key to the differences in the calculations.

"sg" wrote:

I need to calculate a monthly payment but the interest method will be 365/365
or 365/360, 30/360, or 30/365. My question is - can I use the PMT function
for this? And, if so, what do I put in instead of interest rate/12 to
calculate this?

Thank you in advance.