Show AllShow All

CUMIPMT

See Also

Returns the cumulative interest paid on a loan between start_period and end_period.

If this function is not available, and returns the #NAME? error, install and load the Analysis ToolPak add-in.

ShowHow?

Syntax

CUMIPMT(rate,nper,pv,start_period,end_period,type)

Rate    is the interest rate.

Nper    is the total number of payment periods.

Pv    is the present value.

Start_period    is the first period in the calculation. Payment periods are numbered beginning with 1.

End_period    is the last period in the calculation.

Type    is the timing of the payment.

Type Timing
0 (zero) Payment at the end of the period
1 Payment at the beginning of the period

Remarks

Example

The example may be easier to understand if you copy it to a blank worksheet.

ShowHow?

 
1
2
3
4
A B
Data Description
9% Annual interest rate
30 Years of the loan
125,000 Present value
Formula Description (Result)
=CUMIPMT(A2/12,A3*12,A4,13,24,0) Total interest paid in the second year of payments, periods 13 through 24 (-11135.23)
=CUMIPMT(A2/12,A3*12,A4,1,1,0) Interest paid in a single payment in the first month (-937.50)

Note  The interest rate is divided by 12 to get a monthly rate. The years the money is paid out is multiplied by 12 to get the number of payments.