PPmt 函数 [VBA]

根据定期固定金额付款与固定利率,指定本金付款期数的投资回报。

warning

This constant, function or object is enabled with the statement Option VBASupport 1 placed before the executable program code in a module.


语法:


Pmt( Rate as Double, Per as Double, NPer as Double, PV as Double, [FV as Variant], [Due as Variant] )

返回值:

Double

参数:

rate」是指各个周期的利率。

Per」希望计算本金付款的期数 (必须为介于 1 与 Nper 的整数)。

NPer」支付年金的周期总数。

PV」是投资的 (目前) 现金价值。

FV」(可选) 是贷款 / 投资的未来价值。

Due 」 (可选) 定义了支付是在周期开始还是结束时到期。

0 - 付款应在期间结束时支付;

1 - 付款应在期间开始时支付。

错误代码:

5 无效的过程调用

示例:


REM ***** BASIC *****
Option VBASupport 1
Sub ExamplePPmt
' 对于计划 6 年还清的贷款,计算第 4 & 5 月支付的本金。
' 利率为每年 10%,每月底付款。
Dim ppMth4 As Double
Dim ppMth5 As Double
' 第 4 月的本金:
ppMth4 = PPmt( 0.1/12, 4, 72, 100000 )
print ppMth4 ' ppMth4 计算结果为 -1044,94463903636。
' 第 5 月的本金:
ppMth5 = PPmt( 0.1/12, 5, 72, 100000 )
print ppMth5' ppMth5 计算结果为 -1053,65251102833。
End Sub

请支持我们!