Pmt 函数 [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, NPer as Double , PV as Double , [FV as Variant], [Due as Variant] )

返回值:

Double

参数:

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

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

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

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

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

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

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

错误代码:

5 无效的过程调用

示例:


REM ***** BASIC *****
Option VBASUPPORT 1
' 计算一个跨度为六年的贷款每月支付的金额。
' 利率为每年 10%,每月底付款。
Sub ExamplePmt
 Dim myPmt As Double
 myPmt = Pmt( 0.1/12, 72, 100000 )
 print MyPmt '计算结果为 -1852,58377757705
End Sub

请支持我们!