다음을 통해 공유


WorksheetFunction.CumIPmt Method (Excel)

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

Syntax

.CumIPmt(Arg1, Arg2, Arg3, Arg4, Arg5, Arg6)

A variable that represents a WorksheetFunction object.

Parameters

Name

Required/Optional

Data Type

Description

Arg1

필수

Variant

The interest rate.

Arg2

필수

Variant

The total number of payment periods.

Arg3

필수

Variant

The present value.

Arg4

필수

Variant

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

Arg5

필수

Variant

The last period in the calculation.

Arg6

필수

Variant

The timing of the payment.

Return Value

Double

Remarks

The following tables lists values used in Arg6.

Type

Timing

0 (zero)

Payment at the end of the period

1

Payment at the beginning of the period

  • Make sure that you are consistent about the units you use for specifying rate and nper. If you make monthly payments on a four-year loan at an annual interest rate of 12 percent, use 12%/12 for rate and 4*12 for Arg2. If you make annual payments on the same loan, use 12% for rate and 4 for Arg2.

  • Arg2, Arg4, Arg5, and type are truncated to integers.

  • If rate ≤ 0, Arg2 ≤ 0, or Arg3 ≤ 0, CumIPmt generates an error.

  • If Arg4 < 1, Arg5 < 1, or Arg4 > Arg5, CumIPmt generates an error.

  • If Arg6 is any number other than 0 or 1, CumIPmt generates an error.

참고 항목

개념

WorksheetFunction Object

WorksheetFunction Object Members