描述
NPV函数通过使用折现率以及一系列未来付款(负值)和收入(正值)来计算投资的净现值。
语法
NPV (rate,value1,[value2],...)
争论
Argument | 描述 | Required/Optional |
---|---|---|
Rate | The rate of discount over the length of one period. | Required |
Value1 | 1 to 254 arguments representing the payments and income. | Required |
Value2, ... | Optional |
Notes
-
如果n是值列表中的现金Stream量数,则NPV的公式为-
$$NPV =\sum_ {i=1} ^ {n}\frac {values_i} {\left(1 + rate\right)^ i} $$
Value1,value2 ...必须在时间上等距分布,并在每个周期的末尾出现。
NPV使用值1,值2 ...的顺序来解释现金Stream量的顺序。
确保以正确的顺序输入您的付款和收入值。
净现值投资在价值1现金Stream量日期之前的一个期间开始,并以列表中的最后一个现金Stream量结束。净现值的计算基于未来现金Stream量。如果您的第一个现金Stream量发生在第一个期间的开始,则必须将第一个值添加到NPV输出中,而不包括在values参数中。
争论 that are empty cells, logical values, or text representations of numbers, error values, or text that cannot be translated into numbers are ignored.
如果参数是数组或引用,则仅计算该数组或引用中的数字。数组或引用中的空单元格,逻辑值,文本或错误值将被忽略。
NPV与PV函数(当前值)相似。 PV和NPV之间的主要区别在于PV允许现金Stream量在该期间的末尾或开始时开始。与可变NPV现金Stream量值不同,PV现金Stream量在整个投资中必须保持恒定。
-
净现值也与IRR函数(内部收益率)有关。 IRR是NPV等于零的比率-
$$NPV\左(IRR\左(...\right)...\右)= 0 $$
适用性
Excel 2007,Excel 2010,Excel 2013,Excel 2016
Example
参考链接
https://www.learnfk.com/javascript/advanced-excel-financial-npv-function.html
标签:...,现金,PV,Stream,JavaScript,Excel,无涯,NPV From: https://blog.51cto.com/u_14033984/7437760