NPer 函数 [VBA]

计算贷款或投资的期数。

warning

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


语法:


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

返回值:

Double

参数:

Rate」为周期性利率。

Pmt」是每期正常支付的年金。

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

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

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

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

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

错误代码:

5 无效的过程调用

示例:


REM ***** BASIC *****
Option VBASupport 1
Sub ExampleNPer
 Dim period As Double
 period = NPer( 0.06, 153.75, 2600)
 Print period ' 返回 -12,02,付款周期包括 12.02 个周期。
End Sub

请支持我们!