IRR 函数 [VBA]

计算投资回报的内部比率。

warning

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


语法:


IRR(Values() as Double , [Guess as Variant])

返回值:

Double

参数:

Values()」: 现金流金额的数组。这些数值表示一段时间内的现金流金额,其中至少有一个数值必须为负 (支出),至少有一个数值必须为正 (收入)。

Guess」对 IRR 的初始预计。

错误代码:

5 无效的过程调用

示例:


REM ***** BASIC *****
Option VBASupport 1
Sub ExampleIRR
 Dim cashFlow(0 to 3) As Double
 cashFlow(0) = -10000
 cashFlow(1) = 3500
 cashFlow(2) = 7600
 cashFlow(3) = 1000
 irrValue = IRR(cashFlow) * 100
 Print irrValue ' 返回 11.3321028236252 。现金流回报的内部比例。
End Sub

请支持我们!