FV 函数 [VBA]

返回基于定期、不变付款和不变利率的投资的未来价值 (未来价值)。

warning

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


语法:


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

返回值:

Double

参数:

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

NPer」为总的周期数 (付款周期)。

Pmt」是定期支付的年金。

PV」 (可选) 指的是投资的 (目前) 现金值。

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

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

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

错误代码:

5 无效的过程调用

示例:


Sub ExampleFV
 Dim myFV As Double
 myFV = =FV(0.04, 2, 750, 2500)
 Print myFV ' 返回 4234.00 货币单位。投资期末的金额为 4234.00 货币单位。
End Sub

请支持我们!