Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/excel/27.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何计算Microsoft Excel中的目标年数_Excel_Forecasting - Fatal编程技术网

如何计算Microsoft Excel中的目标年数

如何计算Microsoft Excel中的目标年数,excel,forecasting,Excel,Forecasting,如果我的年平均增长率为2.5%,本年度销售额为500000美元,目标销售额为1000000美元。有没有一种方法可以计算我达到目标之前的年数(假设年环比持续增长率为2.5%),而无需计算不同行上每增加一年的销售额?有一个简单的公式: Money_end = (1+r/100)^Y*Money_begin =NPER(Growth,0,currentSales,-targetSales) 其中: Money_begin = the starting amount of money, in thi

如果我的年平均增长率为2.5%,本年度销售额为500000美元,目标销售额为1000000美元。有没有一种方法可以计算我达到目标之前的年数(假设年环比持续增长率为2.5%),而无需计算不同行上每增加一年的销售额?

有一个简单的公式:

Money_end = (1+r/100)^Y*Money_begin
=NPER(Growth,0,currentSales,-targetSales)
其中:

Money_begin = the starting amount of money, in this case 500000.
Money_end   = the finishing amount of money, in this case 1000000.
r           = the percent ratio, in this case 2.5.
Y           = the amount of years, which you are looking for.
所以,你的问题归结为求解这个方程:

1000000 = (1+2.5/100)^Y * 500000
2       = 1.025^Y

Y = log(2)/log(1.025)

如果您想用Excel解决这个问题,您可以使用公式和
解算器
基本Excel功能得出相同的(但不是分析)结果。

有一个简单的公式:

Money_end = (1+r/100)^Y*Money_begin
=NPER(Growth,0,currentSales,-targetSales)
其中:

Money_begin = the starting amount of money, in this case 500000.
Money_end   = the finishing amount of money, in this case 1000000.
r           = the percent ratio, in this case 2.5.
Y           = the amount of years, which you are looking for.
所以,你的问题归结为求解这个方程:

1000000 = (1+2.5/100)^Y * 500000
2       = 1.025^Y

Y = log(2)/log(1.025)

如果您希望通过Excel解决此问题,您可以使用公式并使用
解算器
基本Excel功能得出相同的(但数值而非分析)结果。

您可以使用
NPER
函数实现此目的:

Money_end = (1+r/100)^Y*Money_begin
=NPER(Growth,0,currentSales,-targetSales)
请注意,这与@Dominique的结果相同,但使用的是内置的Excel函数

此外,由于Excel财务功能的性质,当前和未来销售的标志需要不同


您可以使用
NPER
功能进行以下操作:

Money_end = (1+r/100)^Y*Money_begin
=NPER(Growth,0,currentSales,-targetSales)
请注意,这与@Dominique的结果相同,但使用的是内置的Excel函数

此外,由于Excel财务功能的性质,当前和未来销售的标志需要不同