+ Reply to Thread
Results 1 to 8 of 8

Commission Payment Spreadsheet

  1. #1
    Registered User
    Join Date
    04-14-2015
    Location
    United Kingdom
    MS-Off Ver
    2010
    Posts
    13

    Commission Payment Spreadsheet

    Hi Guys, Thanks for reading.

    My friend has recently been given a new pay structure and needs help putting together a simple spreadsheet to calculate how much he should be getting paid based on the saled.

    What he does is door to door selling of Gas & Electric, and there are two types of sale. Direct Debit and PPM.

    I did one which works and is being used at the moment. However he did ask to see if this could be simplified (for him)

    He wants to be able to put in how many sales in DD & PPM into two columns with rows monday to friday. with total of sales at the bottom which will calculate his wages automatically.

    The problem here is when he reaches 20 sales his commission increased and again at 59 and 75.

    Can somebody help me to create a spreadsheet which will tot up the weekly sales and dependent on the total value calculate the "what should be" commission.
    Attached Files Attached Files

  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: Commission Payment Spreadsheet

    Is the commission simple? Meaning at 19 he gets $10 each, but at 20 he gets $12.50 each for all 20?

    If so, this simple formula easily does what you've noted using VLOOKUP:

    =VLOOKUP(D2, {0,10;20,12.5;60,15;75,15},2,1)

    Notice the pairs of values in the inner array {}? Adjust those as needed to note where each rate starts.
    Last edited by JBeaucaire; 03-14-2017 at 12:28 PM.
    _________________
    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
    Registered User
    Join Date
    04-14-2015
    Location
    United Kingdom
    MS-Off Ver
    2010
    Posts
    13

    Re: Commission Payment Spreadsheet

    It isn't as simple as that I don't think. For the first 19 he gets 10$ then for the following 40 he gets 12.50

    So for 60 he gets 190$ + 500$ for anything over he gets 15$. Would this formulae still apply?

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

    Re: Commission Payment Spreadsheet

    No, that's a complex stacking commission. Let me lay that out. You need a better reference table.

  5. #5
    Registered User
    Join Date
    04-14-2015
    Location
    United Kingdom
    MS-Off Ver
    2010
    Posts
    13

    Re: Commission Payment Spreadsheet

    Ok thank you. Appreciate your help.

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

    Re: Commission Payment Spreadsheet

    For this, there are multiple inner arrays. The first two are the same, indicating where each of the prior tiers END. The 3rd is the a building value.

    10 = paid for ALL sales
    2.50 = paid for all sales above the first tier, a bonus starting after 19
    2.50 = paid for all sales above the second tier, a second bonus starting after 59.

    PPM
    =SUMPRODUCT(--($D2 >{0;19;59}), $D2 - {0;19;59}, {10;2.5;2.5})

    DD
    =SUMPRODUCT(--($G11 >{0;19;59;74}), $G11 - {0;19;59;74}, {15;3.75;3.75;2.5})

  7. #7
    Registered User
    Join Date
    04-14-2015
    Location
    United Kingdom
    MS-Off Ver
    2010
    Posts
    13

    Re: Commission Payment Spreadsheet

    This is fantastic. Thank you very much for your help.

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

    Re: Commission Payment Spreadsheet

    As it appears you've reached a conclusion, I've marked this thread SOLVED for you.
    FYI, this is done through the Thread Tools located above the first post in this thread. Thanks.

+ 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. formula to subtract payment amount on monthly payment date
    By restingdonkey in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 06-18-2014, 03:39 PM
  2. Commission Calculation Spreadsheet
    By LMiller639 in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 06-10-2014, 01:00 PM
  3. Replies: 4
    Last Post: 02-08-2014, 12:44 PM
  4. Commission Spreadsheet Help
    By abturbo in forum Excel General
    Replies: 3
    Last Post: 07-12-2006, 10:10 PM
  5. [SOLVED] How do I create a payment tracking spreadsheet?
    By Jeff in forum Excel General
    Replies: 0
    Last Post: 06-19-2006, 01:25 PM
  6. [SOLVED] commission spreadsheet
    By Jen in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 09-09-2005, 02:05 AM
  7. [SOLVED] calculate commission $ based on total sold and commission percent
    By blondeindenver in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 07-05-2005, 10:05 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