+ Reply to Thread
Results 1 to 4 of 4

Monthly growth rate

  1. #1
    Registered User
    Join Date
    11-16-2016
    Location
    south west
    MS-Off Ver
    MAc 2010
    Posts
    1

    Monthly growth rate

    Hello

    Can someone help me with a formula for the below

    A1: 240,000 (last years sales)
    B1: 360,000 (next years sales forecast)

    C1:N1: next years sales forecast by month (Jan-Dec)

    I need a formula to calculate the monthly sales in cells C1:N1. I can obviously just divide the 120k increase by 12 and apply this but what I'm trying to achieve is a even month by month growth rate over the year.

    For e.g.

    Jan: 245
    Feb: 255
    Mar 270

    Can anyone help?

    TIA

  2. #2
    Forum Guru
    Join Date
    04-13-2005
    Location
    North America
    MS-Off Ver
    2002/XP and 2007
    Posts
    15,829

    Re: Monthly growth rate

    1st, I think this needs to be a math question before it can be programmed. You indicate that you don't want to assume a linear growth curve, so what kind of growth curve do you want? exponential, logarithmic, quadratic, other??

    I am limited in my understanding of business math and what assumptions one might choose for this. Linear and exponential are probably the easiest ones to program into Excel, and it seems that exponential growth models are frequently used in these scenarios. A linear trend can be calculated using the TREND() or FORECAST() function. An exponential curve can be calculated using the GROWTH() function. (function help files https://support.office.com/en-us/art...6-c6d90033e188 ).

    1) In A2 enter 0, in B2 enter 12
    2) IN C2:N2, enter 1 to 12.
    3a) for a linear trend, in C1 enter =TREND($A$1:$B$1,$A$2:$B$2,C2) and copy/fill across. note the combination of relative and absolute references to make copying easy.
    3b) for an exponential trend, in C1 enter =GROWTH($A$1:$B$1,$A$2:$B$2,C2) and copy fill across.
    3c) for a different trend type, regress coefficients for the desired curve and enter the desired formula in C1.
    Quote Originally Posted by shg
    Mathematics is the native language of the natural world. Just trying to become literate.

  3. #3
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: Monthly growth rate

    You could enter December's sales, guess at a monthly growth rate, and then use Goal Seek (or Solver) to tweak the growth rate to get the desired total:

    A
    B
    C
    1
    Growth Rate
    0.06096841
    2
    Dec Sales
    20,000
    3
    Month
    Sales
    4
    Jan
    21,219
    B4: =$B$2 * (1 + $B$1) ^ (ROWS(B$3:B4) - 1)
    5
    Feb
    22,513
    6
    Mar
    23,886
    7
    Apr
    25,342
    8
    May
    26,887
    9
    Jun
    28,526
    10
    Jul
    30,265
    11
    Aug
    32,111
    12
    Sep
    34,068
    13
    Oct
    36,146
    14
    Nov
    38,349
    15
    Dec
    40,687
    16
    Total
    360,000
    B16: =SUM(B4:B15)
    Last edited by shg; 11-16-2016 at 05:00 PM.
    Entia non sunt multiplicanda sine necessitate

  4. #4
    Forum Expert
    Join Date
    05-01-2014
    Location
    California, US
    MS-Off Ver
    Excel 2010
    Posts
    1,795

    Re: Monthly growth rate

    Quote Originally Posted by thomased View Post
    A1: 240,000 (last years sales)
    B1: 360,000 (next years sales forecast)
    C1:N1: next years sales forecast by month (Jan-Dec)
    I need a formula to calculate the monthly sales in cells C1:N1.
    Personally, I would not forecast monthly sales that way. Be that as it may, try the following paradigm.


    A
    B
    C

    1
    Actl Sales'16
    240,000.00

    2
    Avg Sales'16 20,000.00 monthly
    B2: =B1/12
    3
    Est Sales'17 360,000.00

    4
    Est growth 6.096841% monthly B4: =RATE(12, -B2, 0, B3, 1)
    5
    Jan'17 21,219.37
    B5: =$B$2*(1+$B$4)^ROWS($B$5:B5)
    6
    Feb'17 22,513.08
    Copy B5 into B6:B16
    7
    Mar'17 23,885.67

    8
    Apr'17 25,341.94

    9
    May'17 26,886.99

    10
    Jun'17 28,526.25

    11
    Jul'17 30,265.45


    12
    Aug'17 32,110.69

    13
    Sep'17 34,068.43

    14
    Oct'17 36,145.52

    15
    Nov'17 38,349.26

    16
    Dec'17 40,687.35

    17
    TOTAL 360,000.00
    B17: =SUM(B5:B16)

    Notes:

    1. It would be better to replace last year's average monthly sales in B2 with last year's sales in Dec. You did not provide that data.

    2. If you want next year's monthly sales to go across (e.g. C1:N1), replace ROWS($B$5:B5) with COLUMNS($C$1:C1).

    3. We could simplify the formulas in B5 and B6:B16 as follows:

    B5: =B2*(1+B4)
    B6: =B5*(1+$B$4)
    Copy B6 into B7:B16

    The advantage of the more complex formula that I use is: it allows us to round the monthly results to a desired precision without cascading the inaccuracy month-to-month.

    If you do round, do not expect the sum in B17 to be exactly the same as B3.
    Last edited by joeu2004; 11-17-2016 at 10:55 AM. Reason: cosmetic

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 8
    Last Post: 02-02-2020, 01:39 AM
  2. [SOLVED] Need help writing formula to calculate monthly returns based on annual growth rate
    By bxk006 in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 07-10-2014, 12:07 PM
  3. Replies: 1
    Last Post: 03-08-2013, 04:18 PM
  4. Replies: 5
    Last Post: 03-07-2013, 11:38 AM
  5. Excel 2007 : compound & monthly growth rate%
    By tkaz in forum Excel General
    Replies: 1
    Last Post: 04-14-2011, 01:33 PM
  6. annual growth rate from monthly data
    By kotlon in forum Excel General
    Replies: 5
    Last Post: 06-16-2006, 04:00 PM
  7. [SOLVED] monthly growth rate
    By my in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 03-01-2006, 09:10 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1