+ Reply to Thread
Results 1 to 13 of 13

Here's a fun one. Incentive formula in tiered structure.

  1. #1
    Registered User
    Join Date
    05-28-2013
    Location
    Knoxville, TN
    MS-Off Ver
    Excel 2007
    Posts
    59

    Here's a fun one. Incentive formula in tiered structure.

    I'm working on this and as simple as it is, I'm having a major brain fart tonight and forgetting all my education on this from school.
    Basically what I am wanting to do, is be able to put in last years sales under the LY column (example attached) and have the incentive structure auto calculate what the potential bonus would be if a 5% increase is met, 10%, 15%, 20%, 25%, and 30%. The way this works is noted above PLUS 1/4% of total sales. (.25% of total sales, not 25%).
    So between 25k and 50k with a 10% increase would result in .25% of total sales plus $150.
    Anybody who could get me on my way, it would be greatly appreciated!
    I usually love doing this stuff but for some reason, I'm drawing blanks tonight. This old age stuff is for the birds!
    Attached Files Attached Files

  2. #2
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,047

    Re: Here's a fun one. Incentive formula in tiered structure.

    Hi. Well they say that getting old isnt for wimps lol

    It might help if you added a few data samples, as well as some expected outcomes, and how you arrived at them, to get us started?
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  3. #3
    Registered User
    Join Date
    05-28-2013
    Location
    Knoxville, TN
    MS-Off Ver
    Excel 2007
    Posts
    59

    Re: Here's a fun one. Incentive formula in tiered structure.

    Thanks for responding. Heres the best way I could think to describe what it is I'm looking for. I just am having major trouble writing the formula! Hopefully, someone can help.
    Thanks again!
    Attached Files Attached Files

  4. #4
    Valued Forum Contributor
    Join Date
    05-20-2013
    Location
    Ohio, USA
    MS-Off Ver
    Excel 2013
    Posts
    941

    Re: Here's a fun one. Incentive formula in tiered structure.

    See attached...

    Used MATCH(_,_,-1) which required the lookup array be sorted in descending order.
    Attached Files Attached Files
    Last edited by jhren; 06-01-2013 at 03:56 PM.

  5. #5
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,047

    Re: Here's a fun one. Incentive formula in tiered structure.

    if you modify your 1st table, by putting in 0 in B1, 25000 ib c1 etc across, then you can use this, copied down and across...
    =IF($C23="","",$C23*0.0025+INDEX($B$1:$G$8,MATCH(D$11,$B$1:$B$8,0),MATCH($C23,$B$1:$G$1,1)+1))

    I dont quite agree with the answers you have, so please check both your answers and mine?

  6. #6
    Valued Forum Contributor
    Join Date
    05-20-2013
    Location
    Ohio, USA
    MS-Off Ver
    Excel 2013
    Posts
    941

    Re: Here's a fun one. Incentive formula in tiered structure.

    Quote Originally Posted by FDibbins View Post
    if you modify your 1st table, by putting in 0 in B1, 25000 ib c1 etc across, then you can use this, copied down and across...
    =IF($C23="","",$C23*0.0025+INDEX($B$1:$G$8,MATCH(D$11,$B$1:$B$8,0),MATCH($C23,$B$1:$G$1,1)+1))

    I dont quite agree with the answers you have, so please check both your answers and mine?
    You forgot to multiply $C23 by the 5%, 10%, 15%, 20%, or 25% (D11 thru H11).

    I used: $C23*(1+D$11)*0.25%

  7. #7
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,047

    Re: Here's a fun one. Incentive formula in tiered structure.

    That was not how I read the OP's request?
    Then take 1/4% of sales (0.25% of 42,000)
    Equals 105 (Bonus payout for 1/4% of total sales)
    Then add growth bonus based on chart above
    Falls in the greater than 25k but less than 50k tier of 5 %
    Add $75 to the 105 bonus for total bonus equaling 180 and so on for each growth %
    there is nothing there about applying the % to the base value?

  8. #8
    Valued Forum Contributor
    Join Date
    05-20-2013
    Location
    Ohio, USA
    MS-Off Ver
    Excel 2013
    Posts
    941

    Re: Here's a fun one. Incentive formula in tiered structure.

    Quote Originally Posted by FDibbins View Post
    That was not how I read the OP's request?
    Then take 1/4% of sales (0.25% of 42,000)
    Equals 105 (Bonus payout for 1/4% of total sales)
    Then add growth bonus based on chart above
    Falls in the greater than 25k but less than 50k tier of 5 %
    Add $75 to the 105 bonus for total bonus equaling 180 and so on for each growth %
    there is nothing there about applying the % to the base value?
    You left off the part...
    40,000
    plus 5 % increase =
    42,000
    The value in C23 is 40,000

  9. #9
    Valued Forum Contributor
    Join Date
    05-20-2013
    Location
    Ohio, USA
    MS-Off Ver
    Excel 2013
    Posts
    941

    Re: Here's a fun one. Incentive formula in tiered structure.

    BTW, your posted formula prompted me to reevaluate using Match(_,_,-1).

    I revised the array and my formula to use [+]1....
    Attached Files Attached Files

  10. #10
    Registered User
    Join Date
    05-28-2013
    Location
    Knoxville, TN
    MS-Off Ver
    Excel 2007
    Posts
    59

    Re: Here's a fun one. Incentive formula in tiered structure.

    You are honestly a genius! I cannot thank you enough. I really mean that. You have made my night!

  11. #11
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,047

    Re: Here's a fun one. Incentive formula in tiered structure.

    Based on your last post it seems that you are satisfied with the solution(s) you've received but you haven't marked your thread as SOLVED. If your problem has not been solved you can use Thread Tools (located above your first post) and choose "Mark this thread as unsolved".
    Thanks.

    Also, as a relatively new member of the forum, you may not be aware that you can thank those who have helped you by clicking the small star icon located in the lower left corner of the post in which the help was given. By doing so you can add to the reputation(s) of those who helped.

  12. #12
    Registered User
    Join Date
    06-20-2013
    Location
    Buffalo
    MS-Off Ver
    Excel 2007
    Posts
    3

    Re: Here's a fun one. Incentive formula in tiered structure.

    I like to think of myself as quite handy using excel however im stumped on this one. Im trying to figure out a pay scale to use and I like the idea of having a tiered bonus however I cant figure out how to fill in the bonus line highlighted in blue. I also highlighted in blue the table to correspond with the tiers. Can someone help me find a formula I can use to make this work??

    Attached is excel sheet I have created
    Attached Files Attached Files

  13. #13
    Valued Forum Contributor
    Join Date
    05-20-2013
    Location
    Ohio, USA
    MS-Off Ver
    Excel 2013
    Posts
    941

    Re: Here's a fun one. Incentive formula in tiered structure.

    You should start your own new topic...

+ 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