Excel Inflation 的公式已调整 Returns
Excel Formula for Inflation Adjusted Returns
例如:您希望在 Z# 年的每一年年初收到 $X,以今天的美元计算。假设 3% 的恒定 inflation 利率和 7% 的复合年利率 return。
我知道计算 inflation 调整后 returns 的公式;对于 return 的比率,您必须使用此公式:
[[(1+investment return)/(1+inflation rate)]-1]*100 OR in this instance
[(1.07/1.03)-1]*100
然后您需要使用现值公式计算剩余的 PV(rate,nper,pmt,[fv],[type])
以找出需要多少 $ 才能维持 inflation 调整后的 $X Z# 年。所以这是我正在使用的公式:
=PV((((((1+E16)/(1+B15))-1)*100)),H14,-O7,,1)
其中 E16 是我的年度 Return (7%),B15 是我的 Inflation 费率 (3),H14 是我需要付款的年数 (30),-O7 是我的付款金额(负数为正数)(127,621.98 美元),未来价值 [fv] 留空是不必要的,Type 是 1 所以我计算在年初收到付款。
根据我的财务计算器,所有这些 "should" return 是 2,325,327.2044 美元,但是 Excel 给了我 160,484.6347 美元。
我做错了什么?
PV的syntax包括:
Rate Required. The interest rate per period. For example, if you obtain an automobile loan at a 10 percent annual interest rate and make monthly payments, your interest rate per month is 10%/12, or 0.83%. You would enter 10%/12, or 0.83%, or 0.0083, into the formula as the rate.
所以不要因数 *100
。
许多括号没有用,因为下面的公式就足够了:
=PV((1+E16)/(1+B15)-1,H14,-O7,,1)
Excel (2013) 四个DP的结果是:,325,327.2045
.
例如:您希望在 Z# 年的每一年年初收到 $X,以今天的美元计算。假设 3% 的恒定 inflation 利率和 7% 的复合年利率 return。 我知道计算 inflation 调整后 returns 的公式;对于 return 的比率,您必须使用此公式:
[[(1+investment return)/(1+inflation rate)]-1]*100 OR in this instance
[(1.07/1.03)-1]*100
然后您需要使用现值公式计算剩余的 PV(rate,nper,pmt,[fv],[type])
以找出需要多少 $ 才能维持 inflation 调整后的 $X Z# 年。所以这是我正在使用的公式:
=PV((((((1+E16)/(1+B15))-1)*100)),H14,-O7,,1)
其中 E16 是我的年度 Return (7%),B15 是我的 Inflation 费率 (3),H14 是我需要付款的年数 (30),-O7 是我的付款金额(负数为正数)(127,621.98 美元),未来价值 [fv] 留空是不必要的,Type 是 1 所以我计算在年初收到付款。 根据我的财务计算器,所有这些 "should" return 是 2,325,327.2044 美元,但是 Excel 给了我 160,484.6347 美元。
我做错了什么?
PV的syntax包括:
Rate Required. The interest rate per period. For example, if you obtain an automobile loan at a 10 percent annual interest rate and make monthly payments, your interest rate per month is 10%/12, or 0.83%. You would enter 10%/12, or 0.83%, or 0.0083, into the formula as the rate.
所以不要因数 *100
。
许多括号没有用,因为下面的公式就足够了:
=PV((1+E16)/(1+B15)-1,H14,-O7,,1)
Excel (2013) 四个DP的结果是:,325,327.2045
.