+ Reply to Thread
Results 1 to 12 of 12

Nested IF formula for sliding commission scale

  1. #1
    Registered User
    Join Date
    01-02-2018
    Location
    VA
    MS-Off Ver
    Excel
    Posts
    8

    Nested IF formula for sliding commission scale

    I am trying to create a sliding commission scale where the following occurs:

    The formula will be in Cell E45 and need to return a value of "0", "6%", "8%", "10%" based on Gross profit Percentage.
    Gross profit is cell I50

    Example if Gross Profit is less than 50%, then 0 commission.
    If Gross Profit is 50-60%, then 6% commission
    If Gross Profit is 60-70% then 8% commission
    If Gross Profit is 70% and greater then 10% commission.

    I have come up with the below formula but unable to get that last statement to work once a gross profit of 70% or more is reached.

    =IF(I50<50%,"0",IF(I50<=60%,"6%",IF(I50>=60%-69%,"8%",IF(I50>=70%,"10%"))))

    Does anyone have an suggestions on the correct formula?
    Last edited by tmva; 01-02-2018 at 03:42 PM.

  2. #2
    Forum Expert gmr4evr1's Avatar
    Join Date
    11-24-2014
    Location
    Texas
    MS-Off Ver
    Office 2010 and 2007
    Posts
    3,448

    Re: Nested IF formula for sliding commission scale

    Maybe this....
    Please Login or Register  to view this content.
    1N73LL1G3NC3 15 7H3 4B1L17Y 70 4D4P7 70 CH4NG3 - 573PH3N H4WK1NG
    You don't have to add Rep if I have helped you out (but it would be nice), but please mark the thread as SOLVED if your issue is resolved.

    Tom

  3. #3
    Forum Expert Sam Capricci's Avatar
    Join Date
    06-14-2012
    Location
    Palm Harbor, Florida
    MS-Off Ver
    16.84 for Mac MS 365
    Posts
    8,496

    Re: Nested IF formula for sliding commission scale

    maybe a little simpler... =IF(I50<=50%,0,IF(I50<=60%,6%,IF(I50<=70%,8%,10%)))
    Make contributors happy, click on the "* Add Reputation" as a way to say thank you.
    Sam Capricci

  4. #4
    Registered User
    Join Date
    01-02-2018
    Location
    VA
    MS-Off Ver
    Excel
    Posts
    8

    Re: Nested IF formula for sliding commission scale

    A quick try here and it worked! Thanks to both of you! You don't know how long I racked my brain to try to figure it out! Thanks again!

  5. #5
    Forum Expert gmr4evr1's Avatar
    Join Date
    11-24-2014
    Location
    Texas
    MS-Off Ver
    Office 2010 and 2007
    Posts
    3,448

    Re: Nested IF formula for sliding commission scale

    @ Sambo kid - Wouldn't there be an issue with doing it that way? If the number in I50 is 59%, then it would meet 3 of the 4 criteria, as it is less than 50, 60 and 70.

  6. #6
    Forum Expert gmr4evr1's Avatar
    Join Date
    11-24-2014
    Location
    Texas
    MS-Off Ver
    Office 2010 and 2007
    Posts
    3,448

    Re: Nested IF formula for sliding commission scale

    No, problem, glad to help.

  7. #7
    Forum Expert Sam Capricci's Avatar
    Join Date
    06-14-2012
    Location
    Palm Harbor, Florida
    MS-Off Ver
    16.84 for Mac MS 365
    Posts
    8,496

    Re: Nested IF formula for sliding commission scale

    gmr4evr1

    IF formulas stop working once it finds the first criteria that it meets so at 59.99% it returns 6% only.

  8. #8
    Forum Expert gmr4evr1's Avatar
    Join Date
    11-24-2014
    Location
    Texas
    MS-Off Ver
    Office 2010 and 2007
    Posts
    3,448

    Re: Nested IF formula for sliding commission scale

    Ahhh, ok, that makes sense.

  9. #9
    Forum Expert Sam Capricci's Avatar
    Join Date
    06-14-2012
    Location
    Palm Harbor, Florida
    MS-Off Ver
    16.84 for Mac MS 365
    Posts
    8,496

    Re: Nested IF formula for sliding commission scale

    gmr4evr1
    No problem.
    after I thought about it I should've wrote that most formulas stop working once the criteria is met like a vlookup, index/match etc will not go past the first instance it finds that meets the criteria unless it is designed to look for a second or third instance, sumif/s countif/s as obvious exceptions as are others.

  10. #10
    Forum Expert gmr4evr1's Avatar
    Join Date
    11-24-2014
    Location
    Texas
    MS-Off Ver
    Office 2010 and 2007
    Posts
    3,448

    Re: Nested IF formula for sliding commission scale

    I guess doing it like that one would have to be sure they put the criteria in the correct order within the formula.

  11. #11
    Forum Expert Sam Capricci's Avatar
    Join Date
    06-14-2012
    Location
    Palm Harbor, Florida
    MS-Off Ver
    16.84 for Mac MS 365
    Posts
    8,496

    Re: Nested IF formula for sliding commission scale

    I guess doing it like that one would have to be sure they put the criteria in the correct order within the formula.
    yes, you would have to have it in ascending order, if backward then the first criteria it would meet would be the less than or equal to 70% and return 8%.

  12. #12
    Forum Moderator
    Join Date
    01-21-2014
    Location
    St. Joseph, Illinois U.S.A.
    MS-Off Ver
    Office 365 v 2403
    Posts
    13,406

    Re: Nested IF formula for sliding commission scale

    Perhaps another way.
    Formula: copy to clipboard
    Please Login or Register  to view this content.
    Dave

+ 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. Sliding Scale Commission Structure
    By snakesbee in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 12-29-2016, 05:53 PM
  2. Creating a Sliding Scale Commission Formula
    By Nick1966 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 11-06-2015, 11:03 AM
  3. Need help in creating a sliding scale commission worksheet
    By Estimated Profit in forum Excel General
    Replies: 7
    Last Post: 02-27-2015, 10:01 AM
  4. Sliding Scale Commission
    By rushbrooksharoon in forum Excel General
    Replies: 10
    Last Post: 06-25-2013, 09:07 AM
  5. [SOLVED] Formula to calculate commission based on sliding scale
    By Excel Dumbo in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 03-31-2013, 10:52 PM
  6. [SOLVED] Percentage Commission on a sliding scale.
    By JonPFP in forum Excel General
    Replies: 6
    Last Post: 04-13-2006, 01:30 PM
  7. calculating commission on sliding scale
    By corrado444 in forum Excel - New Users/Basics
    Replies: 4
    Last Post: 12-09-2005, 01: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