【发布时间】:2020-07-12 16:54:18
【问题描述】:
假设我的平均年增长率为 2.5%,当年销售额为 500,000 美元,目标销售额为 1,000,000 美元。有没有办法计算我达到目标的年数(假设持续的同比增长率为 2.5%),而不用计算不同行的每一年的销售额?
【问题讨论】:
标签: excel forecasting
假设我的平均年增长率为 2.5%,当年销售额为 500,000 美元,目标销售额为 1,000,000 美元。有没有办法计算我达到目标的年数(假设持续的同比增长率为 2.5%),而不用计算不同行的每一年的销售额?
【问题讨论】:
标签: excel forecasting
有一个简单的公式:
Money_end = (1+r/100)^Y*Money_begin
地点:
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 解决此问题,您可以使用公式并使用Solver 基本 Excel 功能来得出相同的(但数字而不是分析)结果。
【讨论】: