Description
IPmt returns a Number specifying the interest payment for a given period of an annuity based on periodic, fixed payments and a fixed interest rate.
Overloads
IPmt (rate, period, nPeriods, presentValue)
IPmt (rate, period, nPeriods, presentValue, futureValue)
IPmt (rate, period, nPeriods, presentValue, futureValue, type)
Arguments
rate is a Number that specifies the interest rate per period.
period is a Number that specifies the payment period in the range 1 through nPeriods.
nPeriods is a positive Number that specifies the total number of payment periods in the annuity. The units used for specifying rate, period and nPeriods must be consistent. For example, if nPeriods is the number of periods in months, then rate is a monthly interest rate and period specifies a month.
presentValue is a Number or Currency that specifies the present value, or value today, of a series of future payments or receipts.
futureValue is an optional Number or Currency that specifies the future value or cash balance you want after you've made the final payment. If omitted, 0 is assumed.
type is an optional Number that specifies when payments are due. Specify 0 if payments are due at the end of the payment period, and 1 if payments are due at the beginning of the period. If omitted, 0 is assumed.
Action
IPmt returns a Number specifying the interest payment for a given period of an annuity based on periodic, fixed payments and a fixed interest rate.
Examples
Suppose that you want to take out a $250,000 loan payable monthly over 15 years at an annual interest rate of 7 percent. The following formula returns the amount of interest that you pay in your first loan payment. Note that the monthly interest rate is 0.07 / 12 and the number of months of the loan is 15 * 12.
IPmt (0.07 / 12, 1, 15 * 12, 250000)
Returns the Number value -1458.33 (rounded to 2 decimals). The value is negative because it represents a payment out from you whereas the loan amount of $250,000 is positive because it represents a payment in to you.
The following formula returns the amount of interest that you pay in your 121st payment (after 10 years of payments):
IPmt (0.07 / 12, 10*12 + 1, 15 * 12, 250000)
Returns -661.98 (rounded to 2 decimals). You've made progress on the loan and so less of your monthly payment is for paying interest.