+ Reply to Thread
Results 1 to 22 of 22

Need help: Grow a number every three months

  1. #1
    Registered User
    Join Date
    10-10-2019
    Location
    Germany
    MS-Off Ver
    Microsoft office Version 10
    Posts
    12

    Need help: Grow a number every three months

    I would be so so grateful if you could help me with the following formula:

    I would like to grow a number every three months by 100.
    In my example the number of sales points grows every three months by 100.
    So in January, we start with 1000 sales points, in April we have 1100, in July we have 1200 etc.
    I have no idea what the correct formula is:/

    I have attached the relevant file, the formulas has to me inserted in cells H7, I7 etc.

    Would anybody be so kind and help?
    Attached Files Attached Files

  2. #2
    Forum Guru
    Join Date
    02-27-2016
    Location
    Vietnam
    MS-Off Ver
    2016
    Posts
    5,911

    Re: Need help: Grow a number every three months

    H7: = 1000

    Try this formula in I7 and copy across::

    =IF(MOD(COUNT($H$7:H7),3)>0,H7,H7+100)

  3. #3
    Registered User
    Join Date
    10-10-2019
    Location
    Germany
    MS-Off Ver
    Microsoft office Version 10
    Posts
    12

    Re: Need help: Grow a number every three months

    Thank you so much!! However, the formula does not work Could you double check? Also, could you use the cell "C7" in the formula in case we change the number of salespoints to be added? THANK YOU SO MUCH!

  4. #4
    Forum Expert
    Join Date
    11-27-2007
    Location
    New Jersey, USA
    MS-Off Ver
    2013
    Posts
    1,669

    Re: Need help: Grow a number every three months

    do you also want the monthly growth by % in columns D and E?
    So in your example Feb would be 1,010 March would be 1,020 and April would jump to 1,100?
    Also is monthly % growth compounded? It looks like you are compounding this. Just wanted to confirm.
    1. Click on the * Add Reputation if you think this helped you
    2. Mark your thread as SOLVED when question is resolved

    Modytrane

  5. #5
    Registered User
    Join Date
    10-10-2019
    Location
    Germany
    MS-Off Ver
    Microsoft office Version 10
    Posts
    12

    Re: Need help: Grow a number every three months

    No i donīt , D7 and E7 have to be deleted.
    So in my example the end result should be: Jan 1000, Feb 1000, March 1000, April 1100, May 1100, June 1100, July 1200, August 1200, September 1200, Oktober 1300, November 1300, December 1300.

    Thanks for the clarification!

  6. #6
    Forum Guru samba_ravi's Avatar
    Join Date
    07-26-2011
    Location
    Hyderabad, India
    MS-Off Ver
    Excel 2021
    Posts
    8,914

    Re: Need help: Grow a number every three months

    or try
    I7=$H7+INT(COLUMNS($I7:I7)/3)*100

    copy and past toward right
    Samba

    Say thanks to those who have helped you by clicking Add Reputation star.

  7. #7
    Forum Guru samba_ravi's Avatar
    Join Date
    07-26-2011
    Location
    Hyderabad, India
    MS-Off Ver
    Excel 2021
    Posts
    8,914

    Re: Need help: Grow a number every three months

    try I7=$H7+INT(COLUMNS($I7:I7)/3)*$C7

  8. #8
    Registered User
    Join Date
    10-10-2019
    Location
    Germany
    MS-Off Ver
    Microsoft office Version 10
    Posts
    12

    Re: Need help: Grow a number every three months

    IT WORKED!! Thank you so so much!! I am so grateful

  9. #9
    Registered User
    Join Date
    10-10-2019
    Location
    Germany
    MS-Off Ver
    Microsoft office Version 10
    Posts
    12

    Re: Need help: Grow a number every three months

    Last question: Which formula do I post in U7 and V7 (numbers for total year). The correct number in U7 should be 1600 and in v7 1900

  10. #10
    Forum Expert
    Join Date
    11-27-2007
    Location
    New Jersey, USA
    MS-Off Ver
    2013
    Posts
    1,669

    Re: Need help: Grow a number every three months

    Formula suggested in #2 above with following change works as well.

    HTML Code: 

  11. #11
    Valued Forum Contributor loginjmor's Avatar
    Join Date
    01-31-2013
    Location
    Cedar Rapids, Iowa
    MS-Off Ver
    Excel 2013
    Posts
    1,073

    Re: Need help: Grow a number every three months

    Hi -

    Try this:

    =H7*(1+$D7)+IF(MOD(COUNT($H$7:H7)+1,3),0,$C$7)
    ____________________________________________
    If this has solved your problem, please edit the thread title to add the word [SOLVED] at the beginning. You can do this by
    -Go to the top of the first post
    -Select Thread Tools
    -Select Mark thread as Solved

    If I have been particularly helpful, please "bump" my reputation by pressing the small star in the lower left corner of my post.

  12. #12
    Registered User
    Join Date
    10-10-2019
    Location
    Germany
    MS-Off Ver
    Microsoft office Version 10
    Posts
    12

    Re: Need help: Grow a number every three months

    Sorry, but this one is still not working:/

  13. #13
    Forum Guru samba_ravi's Avatar
    Join Date
    07-26-2011
    Location
    Hyderabad, India
    MS-Off Ver
    Excel 2021
    Posts
    8,914

    Re: Need help: Grow a number every three months

    I think U7 should be 1300+400=1700 and V7 should be 1700+400=2100
    isn't it

  14. #14
    Registered User
    Join Date
    10-10-2019
    Location
    Germany
    MS-Off Ver
    Microsoft office Version 10
    Posts
    12

    Re: Need help: Grow a number every three months

    Sorry you are right

  15. #15
    Valued Forum Contributor loginjmor's Avatar
    Join Date
    01-31-2013
    Location
    Cedar Rapids, Iowa
    MS-Off Ver
    Excel 2013
    Posts
    1,073

    Re: Need help: Grow a number every three months

    Can you describe what you mean by "not working"? How do you know it's not working? What are the numbers you are expecting to see? I think if you provide that, we can better help you.

  16. #16
    Registered User
    Join Date
    10-10-2019
    Location
    Germany
    MS-Off Ver
    Microsoft office Version 10
    Posts
    12

    Re: Need help: Grow a number every three months

    Quote Originally Posted by loginjmor View Post
    Hi -

    Try this:

    =H7*(1+$D7)+IF(MOD(COUNT($H$7:H7)+1,3),0,$C$7)
    I also thank you for your help, however, the only formula that has been working is samba_ravis!

  17. #17
    Registered User
    Join Date
    10-10-2019
    Location
    Germany
    MS-Off Ver
    Microsoft office Version 10
    Posts
    12

    Re: Need help: Grow a number every three months

    Sorry, i mean the system tells me "the formula is not correct" if I type in your formula.

  18. #18
    Forum Guru samba_ravi's Avatar
    Join Date
    07-26-2011
    Location
    Hyderabad, India
    MS-Off Ver
    Excel 2021
    Posts
    8,914

    Re: Need help: Grow a number every three months

    U7=sum({1,2,3,4}*3)*$c7*2+$h7*12-$C7*12
    v7=sum({1,2,3,4}*3)*$c7*3+$h7*12-$C7*12
    Last edited by samba_ravi; 10-10-2019 at 11:50 AM. Reason: Small Change

  19. #19
    Registered User
    Join Date
    10-10-2019
    Location
    Germany
    MS-Off Ver
    Microsoft office Version 10
    Posts
    12

    Re: Need help: Grow a number every three months

    Thank you! But why "1200! at the end? I get 16,800 as a result for u7:/

  20. #20
    Registered User
    Join Date
    10-10-2019
    Location
    Germany
    MS-Off Ver
    Microsoft office Version 10
    Posts
    12

    Re: Need help: Grow a number every three months

    Even with your changes the result is still not correct Iīm afraid. Itīs 6000!

  21. #21
    Forum Guru samba_ravi's Avatar
    Join Date
    07-26-2011
    Location
    Hyderabad, India
    MS-Off Ver
    Excel 2021
    Posts
    8,914

    Re: Need help: Grow a number every three months

    sorry try below on
    U7=SUM({0,1,2,3}+1*4)*$C$7*3+$H7*12
    V7=SUM({0,1,2,3}+2*4)*$C$7*3+$H7*12

  22. #22
    Registered User
    Join Date
    10-10-2019
    Location
    Germany
    MS-Off Ver
    Microsoft office Version 10
    Posts
    12

    Re: Need help: Grow a number every three months

    Thank you for your great help today!

+ 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: 2
    Last Post: 07-22-2014, 02:15 AM
  2. Replies: 8
    Last Post: 02-20-2014, 05:46 PM
  3. Replies: 6
    Last Post: 01-31-2013, 02:50 AM
  4. Number of months (elapsed months) between two dates
    By Timbite in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 08-17-2012, 11:37 AM
  5. Replies: 4
    Last Post: 03-04-2012, 12:21 PM
  6. Replies: 12
    Last Post: 08-15-2006, 06:40 PM
  7. Replies: 2
    Last Post: 11-04-2005, 04:00 AM

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