+ Reply to Thread
Results 1 to 7 of 7

Need formula to calculate bonus or commision pay scale

  1. #1
    Registered User
    Join Date
    06-24-2013
    Location
    Vancouver
    MS-Off Ver
    Excel 2003
    Posts
    5

    Need formula to calculate bonus or commision pay scale

    I am trying to write a formula that will calculate the first 30K (0 to 30K) of a number, 127,000 for example, at 10 %, the 2nd 30K (30,001 to 60,000) at 20 % the 3rd 30K at 30 percent, the 4th 30K at 40% and everything over 50K at 50%. Is this possible? Thanks in advance.
    Last edited by Altess; 06-24-2013 at 11:40 PM.

  2. #2
    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 formula to calculate bonus or commision pay scale

    Hi -

    The best I got is a big hairy IF statement as follows:

    =IF(J4>120000,120000*0.25+(J4-120000)*0.5,IF(J4>90000,90000*0.2+(J4-90000)*0.4,IF(J4>60000,60000*0.15+(J4-60000)*0.3,IF(J4>30000,30000*0.1+(J4-30000)*0.2,J4*0.1))))

    Substitute cell J4 for whatever target cell you want. It's not very flexible, but it works. I assume in your problem statement you meant that anything over $120,000 is at 50%?

    Hope this helps.
    ____________________________________________
    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.

  3. #3
    Registered User
    Join Date
    06-24-2013
    Location
    Vancouver
    MS-Off Ver
    Excel 2003
    Posts
    5

    Re: Need formula to calculate bonus or commision pay scale

    Hi,

    Yes, anything over $120,000 is at 50%.

    Wow, that was fast! Thanks, I will test this out and return with "solved" or more questions.

  4. #4
    Forum Expert
    Join Date
    03-23-2004
    Location
    London, England
    MS-Off Ver
    Excel 2019
    Posts
    7,082

    Re: Need formula to calculate bonus or commision pay scale

    Pls ignore, solution invalid
    Regards
    Special-K

    Ensure you describe your problem clearly, I have little time available to solve these problems and do not appreciate numerous changes to them.

  5. #5
    Forum Expert
    Join Date
    03-23-2004
    Location
    London, England
    MS-Off Ver
    Excel 2019
    Posts
    7,082

    Re: Need formula to calculate bonus or commision pay scale

    Does this work (3rd attempt)?

    =(J4-LOOKUP(J4,{0,30000,60000,90000,120000},{0,30000,60000,90000,120000}))*LOOKUP(J4,{0,30000,60000,90000,120000},{0.1,0.2,0.3,0.4,0.5})
    Last edited by Special-K; 06-24-2013 at 06:30 PM.

  6. #6
    Registered User
    Join Date
    06-24-2013
    Location
    Vancouver
    MS-Off Ver
    Excel 2003
    Posts
    5

    Re: Need formula to calculate bonus or commision pay scale

    Hello and thanks for your help.

    This formula seems to just return last 50% for anything over $120,000 without adding the commissions on the first, second, third and fourth $30,000 to that amount for the total commission.

    Thanks,

  7. #7
    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 formula to calculate bonus or commision pay scale

    @ Special-K

    Why is the first solution invalid?

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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