嘿,所以我无法弄清楚如何在 Excel 中计算零息债券的复利利率。
问题是:某项商品从 X 开始,3 年后其价值为 103.09%,而在第 5 年末其价值为 105.06%。3 年后季度复利利率是多少。我正在尝试在 excel 中实现这一点。
我尝试使用 Excel 中的 RATE 函数,但是我缺少使用该函数所需的大量信息。还有其他方法吗?
答案1
要使用 RATE 函数,您可以使用以下命令:
nper = 8 //This is the number of periods for 2 years
Pmt = 0 //There are no payments being made till the end of the number of periods
Pv = 103.09//This is used to represent 103.09% of X
Fv = -105.06 //This is used to represent 105.06% of X
Type = 0 //Payment is at the end of the period
或者你可以做
=POWER(1.0506/1.0309,1/8) - 1