+ Reply to Thread
Results 1 to 5 of 5

Commission Scale

  1. #1
    Registered User
    Join Date
    12-17-2014
    Location
    Toronto, Canada
    MS-Off Ver
    Microsoft 365
    Posts
    39

    Commission Scale

    Hello,
    I'm trying to get the right formula to calculate commissions based on the following:

    Total Commission: x

    First $10,000.00 10.0% $
    Next $15,000.00 7.5% $
    Next $25,000.00 5% $
    Next $50,000.00 3% $
    Balance $100,000.00 2% $

    Depending on what x is, the first 10,000 is paid at 10.0%, then the next 15,000 is paid at 7.5% and so on

    Any help would be greatly appreciated!

  2. #2
    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,499

    Re: Commission Scale

    so to be clear, if the person sells 15,000 they get 1375 in commissions? 1000 for the first 10% on 10,000 then 375 for the 7.5% of the next 5000, correct?
    Make contributors happy, click on the "* Add Reputation" as a way to say thank you.
    Sam Capricci

  3. #3
    Forum Expert Logit's Avatar
    Join Date
    12-23-2012
    Location
    North Carolina
    MS-Off Ver
    Excel 2019 Professional Plus - 2007 Enterprise
    Posts
    7,015

    Re: Commission Scale

    .
    What happens if they sell over $100,000 ? Do they get paid 2% for each dollar over $100,000 ?

    With the exception of the 'over $100,000 sales' ... try this formula : =IF(A1<=10000,A1*10%,IF(A1<=15000,1000+(A1-10000)*7.5%,IF(A1<=25000,2125+(A1-15000)*5%,3375+(A1-25000)*3%)))

    The formula presumes the total amount of sales is listed in Cell A1.

  4. #4
    Forum Expert Ace_XL's Avatar
    Join Date
    06-04-2012
    Location
    UAE
    MS-Off Ver
    2016
    Posts
    6,074

    Re: Commission Scale

    Try

    =SUMPRODUCT(--(A1>{0,10000,25000,50000,100000}),--(A1-{0,10000,25000,50000,100000}),{0.1,-0.025,-0.025,-0.02,-0.01})

    Explanation in this thread
    https://www.excelforum.com/excel-for...lculation.html
    Life's a spreadsheet, Excel!
    Say thanks, Click *

  5. #5
    Registered User
    Join Date
    12-17-2014
    Location
    Toronto, Canada
    MS-Off Ver
    Microsoft 365
    Posts
    39

    Re: Commission Scale

    Thank you so much!! Really appreciated it!

+ 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 Calculator
    By milky24 in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 08-20-2019, 07:39 AM
  2. Nested IF formula for sliding commission scale
    By tmva in forum Excel Formulas & Functions
    Replies: 11
    Last Post: 01-02-2018, 04:35 PM
  3. Sliding Scale Commission Structure
    By snakesbee in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 12-29-2016, 05:53 PM
  4. Sliding Scale Commission
    By rushbrooksharoon in forum Excel General
    Replies: 10
    Last Post: 06-25-2013, 09:07 AM
  5. Simple Commission Scale
    By jeffgjohnson in forum Excel General
    Replies: 2
    Last Post: 02-04-2013, 07:48 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

Tags for this Thread

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