PMT Function
The PMT function calculates the periodic payment for a loan, given the principal, interest rate, and number of periods in the life of the loan. It uses the same formula as the FV (future value) function (see
FV Function).
This function has the following syntax:
PMT(pv = value, i = value, nper = value [, fv = value, paybegin])
Note: Paybegin is either 1 or 0, indicating that the payment is made at the beginning or end of the period.
This function returns:
• Float—The periodic payment
• Null—On error
Example—PMT function:
/* Calculate the monthly payment on a $50000 loan,
** with an interest rate of 8.5% per year for a
** period of 20 years. Note payment will be negative
** indicating a cash outflow.
*/
payment = pmt(pv = 50000, i = .085/12, nper = 12*20);