+ Reply to Thread
Results 1 to 16 of 16

% increase

  1. #1
    Registered User
    Join Date
    09-16-2016
    Location
    England
    MS-Off Ver
    Excel 2013
    Posts
    84

    % increase

    Hello all,

    Nice easy one for you all.

    I would like to work out my % increase or decrease per year, but only to the month to date. Not my total.

    See attachment it might make it a little clearer.

    Thank you in advance.
    Attached Images Attached Images

  2. #2
    Forum Expert Olly's Avatar
    Join Date
    09-10-2013
    Location
    Darlington, UK
    MS-Off Ver
    Excel 2016, 2019, 365
    Posts
    6,284

    Re: % increase

    Hi

    Pictures are of little value. Honestly, no one wants to re-type your data to try and solve your issue. Additionally, we would only be guessing at how your data was structured, ie. formulas, formatting, etc.

    Please attach a sample file that represents what you have. The structure of your attachment should be the same structure as your actual data. Any proprietary information should be changed.

    Include in the attachment any code you're currently using (whether it works or not) and an "After" of what you wish the output to be.

    To attach a file to your post,
    click advanced (next to quick post),
    scroll down until you see "manage file",
    click that and select "add files" (top right corner).
    click "select files" find your file, click "open" click "upload" click 'done" bottom right. click "submit reply"

    Once the upload is completed the file name will appear below the input boxes in this window.
    You can then close the window to return to the new post screen.
    let Source = #table({"Question","Thread", "User"},{{"Answered","Mark Solved", "Add Reputation"}}) in Source

    If I give you Power Query (Get & Transform Data) code, and you don't know what to do with it, then CLICK HERE

    Walking the tightrope between genius and eejit...

  3. #3
    Registered User
    Join Date
    09-16-2016
    Location
    England
    MS-Off Ver
    Excel 2013
    Posts
    84

    Re: % increase

    Please see attached - hope this explains it better.
    Attached Files Attached Files

  4. #4
    Forum Expert Olly's Avatar
    Join Date
    09-10-2013
    Location
    Darlington, UK
    MS-Off Ver
    Excel 2016, 2019, 365
    Posts
    6,284

    Re: % increase

    try:
    Formula: copy to clipboard
    Please Login or Register  to view this content.

  5. #5
    Registered User
    Join Date
    09-16-2016
    Location
    England
    MS-Off Ver
    Excel 2013
    Posts
    84

    Re: % increase

    I can't get it to work.

    Can you drop it into my spread sheet sample I've sent you and re-attach.

    the percentage doesn't look right to me when I do it . . . .

  6. #6
    Registered User
    Join Date
    09-16-2016
    Location
    England
    MS-Off Ver
    Excel 2013
    Posts
    84

    Re: % increase

    Hi All,

    Can anybody else help me with this issue??

  7. #7
    Forum Expert Olly's Avatar
    Join Date
    09-10-2013
    Location
    Darlington, UK
    MS-Off Ver
    Excel 2016, 2019, 365
    Posts
    6,284

    Re: % increase

    Quote Originally Posted by ExcelnoviceUK View Post
    Hi All,

    Can anybody else help me with this issue??
    Hold your horses!! A little patience goes a long way...

    See attachment - your file, with my formula added, in cell P4.

    It shows -17.61% - is that not correct?
    2014-15 sales (to Sep) = $1,531,025.57
    2015-16 sales (to Sep) = $1,261,344.00

    -17.61% sounds right to me...
    Attached Files Attached Files

  8. #8
    Registered User
    Join Date
    09-16-2016
    Location
    England
    MS-Off Ver
    Excel 2013
    Posts
    84

    Re: % increase

    Ha ha sorry for being impatient.

    As you can probably tell from my name I'm a bit of a novice to excel - learning everyday.

    I've looked at the formula you inputted and the percentage looks correct to me, however I don't know how the formula works to get this. Please could you try and explain this to me?

    When I click into the cell you've put the formula into it only highlights C3, but on the C4 it looks at the whole line.
    Attached Images Attached Images

  9. #9
    Forum Expert Olly's Avatar
    Join Date
    09-10-2013
    Location
    Darlington, UK
    MS-Off Ver
    Excel 2016, 2019, 365
    Posts
    6,284

    Re: % increase

    I'm using the OFFSET function to dynamically specify the sum range for 2014-15, based on the number of months with sales value in 2015-16.

  10. #10
    Forum Expert Olly's Avatar
    Join Date
    09-10-2013
    Location
    Darlington, UK
    MS-Off Ver
    Excel 2016, 2019, 365
    Posts
    6,284

    Re: % increase

    If you're still not really following it, I'd suggest using the EVALUATE FORMULA command on the FORMULA ribbon.

  11. #11
    Registered User
    Join Date
    09-16-2016
    Location
    England
    MS-Off Ver
    Excel 2013
    Posts
    84

    Re: % increase

    Still Don't understand how it works - but its giving me the correct information so that's all that matters.

    Thank you very much for the help and for being patient.

  12. #12
    Forum Expert Olly's Avatar
    Join Date
    09-10-2013
    Location
    Darlington, UK
    MS-Off Ver
    Excel 2016, 2019, 365
    Posts
    6,284

    Re: % increase

    We're trying to establish: 2015-16 (to date) Sales as a percentage of 2014-15 Sales (for the same period), -100% to show only the variance %.

    So we need to calculate TWO numberes:
    1. 2015-2016 Sales. This is easy - just this part:
    Formula: copy to clipboard
    Please Login or Register  to view this content.



    2. 2014-2015 Sales, for the same period. This is a bit trickier. We only want to count the number of months for which there are sales in 2015-2016.
    a. So first of all, we count how many months in 2015-2016 have values:
    Formula: copy to clipboard
    Please Login or Register  to view this content.

    b. Now we want to sum from C3:?3 - ? is determined by the count, in 2a. So we use the OFFSET function, to specify a dynamic range:
    Formula: copy to clipboard
    Please Login or Register  to view this content.
    (where x is the count we calculated in 2a)

    OFFSET specifies a starting cell, how many rows offset (0, in this case), how many columns offset (0, in this case), the number of rows in the returned range(1, in this case) and the number of columns in the returned range (x, in this case, where x is the count of months with sales values in 2015-2016)

    Any clearer?!

    Helping to make sens of it?

  13. #13
    Forum Expert
    Join Date
    06-08-2012
    Location
    Left the forum!
    MS-Off Ver
    Left the forum!
    Posts
    5,189

    Re: % increase

    You can do it with SUMIF as well.

    =SUM(C4:N4)/SUMIF(C4:N4,"<>",C3:N3)-1

    Simples

  14. #14
    Registered User
    Join Date
    09-16-2016
    Location
    England
    MS-Off Ver
    Excel 2013
    Posts
    84

    Re: % increase

    Hi Olly,

    Yes when you break it down like that it defiantly makes more sense.

    Sorry to be a pain, instead of just putting formulas in, I'm trying to establish an understanding of them also.

    I really appreciate your help.

  15. #15
    Registered User
    Join Date
    09-16-2016
    Location
    England
    MS-Off Ver
    Excel 2013
    Posts
    84

    Re: % increase

    Fantastic - Appreciate the reply's and help guys!!!

  16. #16
    Forum Expert Olly's Avatar
    Join Date
    09-10-2013
    Location
    Darlington, UK
    MS-Off Ver
    Excel 2016, 2019, 365
    Posts
    6,284

    Re: % increase

    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED. You can also Add Reputation to those who have helped you. Thanks.

+ 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. [SOLVED] incremental increase in a cell based on value increase in another cell
    By umuni in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 12-18-2014, 05:23 AM
  2. Replies: 3
    Last Post: 09-18-2012, 01:01 AM
  3. Replies: 2
    Last Post: 07-12-2011, 11:08 AM
  4. Increase % over 0
    By jbcmarine in forum Excel General
    Replies: 4
    Last Post: 01-23-2009, 02:24 PM
  5. How do I increase a value if...
    By augustus in forum Excel General
    Replies: 5
    Last Post: 07-14-2006, 10:05 AM
  6. [SOLVED] Can we increase row
    By [email protected] in forum Excel General
    Replies: 2
    Last Post: 07-08-2006, 05:50 AM
  7. Increase A2 by 15%
    By Kellytwh in forum Excel General
    Replies: 2
    Last Post: 09-02-2005, 01:05 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