+ Reply to Thread
Results 1 to 6 of 6

Calculate Commission based on running totals

  1. #1
    Registered User
    Join Date
    06-30-2011
    Location
    Melbourne, Aus
    MS-Off Ver
    Excel 2007
    Posts
    3

    Calculate Commission based on running totals

    Hi Excl Guru's

    I was hoping you could point me in the direction to getting a sales commission claim form created. Our sales team earn commission, for 2 different groups of products (modules & licences). These commissions are broken down further into targets, for example:

    For sales of modules, between $0 to $150K, I earn 6% commission
    For sales of modules, between $150K to $300K, I earn 8% commission
    For sales of modules, over 300K, I earn 12% commission.

    In my sales commission form, I enter a line per order, in the following columns:
    Customer
    Description
    Order Date
    Lic/Mod (Licence or MOdule)
    Value

    I then need to calculate the commission I earned for each order.

    What I was hoping on doing, with your help, its to calculate the amount of commission earned on each order based on my revenue and sales targets (6%, 8% or 12%).

    I hope this makes sense, and all I'm hoping for right now is for someone to put me in the right direction to work this out.

    Ps. I know a difficult point will be where a single sales order will take me over a %. For example, if my running sales total is $299K and I make a sales of $2K, this means I would earn 8% on $1K and 12% on the other $1K

  2. #2
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Calculate Commission based on running totals

    Assuming the first "Value" is entered in E2, then this formula in F2 would give you the commission on that:

    =IF(E2="", "", E2 * LOOKUP(E2,{0, 150000, 300000},{0.06, 0.08, 0.12}))
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

  3. #3
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Calculate Commission based on running totals

    My apologies, I just realized from your final comment that the commissions are tiered, but not cumulative. You make 6% on the first 150k, 8% on the next 150k, then 12% after that. For that, the formula for a single cell to watch column E and calculate the tiered-non-cumulative commission would be:

    =SUMPRODUCT(--(SUM(E:E)>{0,150000,300000}), SUM(E:E)-{0,150000,300000},{0.06,0.02,0.04})

  4. #4
    Registered User
    Join Date
    12-21-2011
    Location
    Twin Cities, MN
    MS-Off Ver
    Excel 2007
    Posts
    1

    Re: Calculate Commission based on running totals - for Jbeaucare

    jbeaucare, I applied the formula but I have a DECREASING commission schedule...It seems to not work properly...How would you tweak?

    Here are the numbers...

    12% paid on $0 - $25,000
    10.26% paid on the next $25,000 - $50,000,
    7.98% paid on the next $50,000 - $75,000,
    3.27% paid on the next $75,000 - $100,000, and
    2.28 paid on any amt over 100K

  5. #5
    Forum Expert Paul's Avatar
    Join Date
    02-05-2007
    Location
    Wisconsin
    MS-Off Ver
    2016/365
    Posts
    6,885

    Re: Calculate Commission based on running totals

    Hi Coach, welcome to the Forum, unfortunately:

    Your post does not comply with Rule 2 of our Forum RULES. Don't post a question in the thread of another member -- start your own thread. If you feel it's particularly relevant, provide a link to the other thread.

  6. #6
    Forum Expert
    Join Date
    12-23-2006
    Location
    germany
    MS-Off Ver
    XL2003 / 2007 / 2010
    Posts
    6,326

    Re: Calculate Commission based on running totals

    You can find the solution at this site

+ 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