【问题标题】:How do I calculate the number of years to target in Microsoft Excel如何计算 Microsoft Excel 中的目标年数
【发布时间】:2020-07-12 16:54:18
【问题描述】:

假设我的平均年增长率为 2.5%,当年销售额为 500,000 美元,目标销售额为 1,000,000 美元。有没有办法计算我达到目标的年数(假设持续的同比增长率为 2.5%),而不用计算不同行的每一年的销售额?

【问题讨论】:

    标签: excel forecasting


    【解决方案1】:

    您可以为此使用NPER 函数:

    =NPER(Growth,0,currentSales,-targetSales)
    

    请注意,这与@Dominique 给出的结果相同,但使用的是内置 Excel 函数。

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

    【讨论】:

      【解决方案2】:

      有一个简单的公式:

      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 功能来得出相同的(但数字而不是分析)结果。

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 1970-01-01
        • 2021-08-17
        • 2015-07-30
        • 1970-01-01
        • 2023-01-13
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        相关资源
        最近更新 更多