函数名称:CUMIPMT
函数功能:返回一笔贷款在给定的 start_period 到 end_period 期间累计偿还的利息数额。
函数语法:
CUMIPMT(rate, nper, pv, start_period, end_period, type)
参数介绍:
Rate 必需。利率。
Nper 必需。总付款期数。
Pv 必需。现值。
Start_period 必需。计算中的首期,付款期数从 1 开始计数。
End_period 必需。计算中的末期。
Type 必需。付款时间类型。
类型 时间
0(零) 期末付款
1 期初付款
使用说明:
应确认所指定的 rate 和 nper 单位的一致性。例如,同样是四年期年利率为 10% 的贷款,如果按月支付,rate 应为 10%/12,nper 应为 4*12;如果按年支付,rate 应为 10%,nper 为 4。
如果 rate ≤ 0、nper ≤ 0 或 pv ≤ 0,函数 CUMIPMT 返回错误值 #NUM!。
如果 start_period < 1、end_period < 1 或 start_period > end_period,函数 CUMIPMT 返回错误值 #NUM!。
如果 type 不是数字 0 或 1,函数 CUMIPMT 返回错误值 #NUM!。
举例如下:
假设AB两列数据如下:
A B
1 数据 说明
2 9% 年利率
3 30 贷款期限
4 125,000 现值
如果使用公式:
=CUMIPMT(A2/12,A3*12,A4,13,24,0) 该笔贷款在第二年中所付的总利息(第 13 期到第 24 期)(-11135.23)
=CUMIPMT(A2/12,A3*12,A4,1,1,0) 该笔贷款在第一个月所付的利息 (-937.50)