+ Reply to Thread
Results 1 to 13 of 13

Commision Figure Sheet: Figuring Commission After a Certain $ Amount

  1. #1
    Registered User
    Join Date
    04-17-2019
    Location
    Terre Haute, IN
    MS-Off Ver
    Office 2019 for Mac
    Posts
    6

    Question Commision Figure Sheet: Figuring Commission After a Certain $ Amount

    Good afternoon!

    I'm trying to put together a spreadsheet that will figure the commission of a sales person, once they make $5000 in sales. I've attached the screenshot of my sheet.

    Essentially, we want to be able to put the totals of orders in a log format, but, once the total sales reaches $5000, we want a formula to kick in calculating the commission amount based on each job after $5000.

    So, if we have three jobs in the F column at $1500, $2500, & $1250, we want the spreadsheet to take the balance over $5000 and apply a percentage to it, such as 10% (the G column). After that point, we'd like the sheet to continue calculating the commission into the H column.

    Does anyone know of a way to apply this? I've been working at it for almost a day, but I'm stumped. Any and all help is appreciated!

    Thanks!
    Attached Images Attached Images

  2. #2
    Valued Forum Contributor
    Join Date
    01-07-2013
    Location
    Michigan
    MS-Off Ver
    O365
    Posts
    601

    Re: Commision Figure Sheet: Figuring Commission After a Certain $ Amount

    Edit: Ignore this, it will not do what you're looking for. Leaving as an example of trying too fast!

    Try this in H4:
    Please Login or Register  to view this content.
    This will give you a running total of commission amount. Is this what you're looking for? Or do you want commission amounts specific to each row?
    Last edited by Melvosh; 04-17-2019 at 04:03 PM. Reason: Does not answer question

  3. #3
    Forum Expert
    Join Date
    11-27-2007
    Location
    New Jersey, USA
    MS-Off Ver
    2013
    Posts
    1,669

    Re: Commision Figure Sheet: Figuring Commission After a Certain $ Amount

    Attach a sample file with some data.
    How are the order amounts organized in column F?
    Is it one row for an order or multiple rows for same order?
    Where is the total calculated?
    Your attached copy shows different % for each row in column H.
    Not clear on how to figure out total.
    How does the formula know which cells to total?
    1. Click on the * Add Reputation if you think this helped you
    2. Mark your thread as SOLVED when question is resolved

    Modytrane

  4. #4
    Registered User
    Join Date
    04-17-2019
    Location
    Terre Haute, IN
    MS-Off Ver
    Office 2019 for Mac
    Posts
    6

    Re: Commision Figure Sheet: Figuring Commission After a Certain $ Amount

    Melvosh:

    We're wanting it based on each row, if possible, but only after the total in F comes to $5000. Anything over that is available for commission earnings.

  5. #5
    Forum Expert
    Join Date
    11-27-2007
    Location
    New Jersey, USA
    MS-Off Ver
    2013
    Posts
    1,669

    Re: Commision Figure Sheet: Figuring Commission After a Certain $ Amount

    HTML Code: 
    How do you separate jobs? What defines each job?

  6. #6
    Forum Expert
    Join Date
    12-14-2012
    Location
    London England
    MS-Off Ver
    MS 365 Office Suite.
    Posts
    8,448

    Re: Commision Figure Sheet: Figuring Commission After a Certain $ Amount

    Formula for H4 then fill down

    =IF(SUM(F$4:F4)>5000,(SUM(F$4:F4)-SUM(F$3:F3))*G4,0)
    My General Rules if you want my help. Not aimed at any person in particular:

    1. Please Make Requests not demands, none of us get paid here.

    2. Check back on your post regularly. I will not return to a post after 4 days.
    If it is not important to you then it definitely is not important to me.

  7. #7
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: Commision Figure Sheet: Figuring Commission After a Certain $ Amount

    ...and as well as uploading the workbook, manually add the results you expect to see and if it's not blindingly obvious the calculation you've used to get the results.

    Your original note didn't even match the picture you showed. There was only one invoice # mentioned and the amounts didn't tie in.
    Richard Buttrey

    RIP - d. 06/10/2022

    If any of the responses have helped then please consider rating them by clicking the small star icon below the post.

  8. #8
    Registered User
    Join Date
    04-17-2019
    Location
    Terre Haute, IN
    MS-Off Ver
    Office 2019 for Mac
    Posts
    6

    Re: Commision Figure Sheet: Figuring Commission After a Certain $ Amount

    Quote Originally Posted by modytrane View Post
    Attach a sample file with some data.
    How are the order amounts organized in column F?
    Is it one row for an order or multiple rows for same order?
    Where is the total calculated?
    Your attached copy shows different % for each row in column H.
    Not clear on how to figure out total.
    How does the formula know which cells to total?
    I've attached a version of the spreadsheet from when I was working on it earlier today. My boss essentially wants column F to add together until it reaches $5000. Once it reaches $5000, take any over $5000 and multiply it by the percentage in column H.

    In the version I'm attaching, there is an extra column with the running total hidden. That one was created when I thought she wanted the sum to reset after each $5000, which is not the case.

    The organization in column F is just in order of entry. I assume she's going to be putting them in based on oldest job to newest job, but there is no set sorting in column F.

    Sorry if I didn't quite answer your questions, I'm still a bit of a novice with Excel.
    Attached Files Attached Files

  9. #9
    Valued Forum Contributor
    Join Date
    01-07-2013
    Location
    Michigan
    MS-Off Ver
    O365
    Posts
    601

    Re: Commision Figure Sheet: Figuring Commission After a Certain $ Amount

    One change to mehmetcik's formula to account for the row that hits the 5000 mark:
    Please Login or Register  to view this content.

  10. #10
    Registered User
    Join Date
    04-17-2019
    Location
    Terre Haute, IN
    MS-Off Ver
    Office 2019 for Mac
    Posts
    6

    Re: Commision Figure Sheet: Figuring Commission After a Certain $ Amount

    Quote Originally Posted by modytrane View Post
    HTML Code: 
    How do you separate jobs? What defines each job?
    We're a printing company, so a "job" to us is a set of printing we have created for a customer, so, for example, a job might be printing 500 business cards. The invoice total would be what is placed in column F. After that might be brochures for another customer, that would be the next row, etc.

  11. #11
    Valued Forum Contributor
    Join Date
    01-07-2013
    Location
    Michigan
    MS-Off Ver
    O365
    Posts
    601

    Re: Commision Figure Sheet: Figuring Commission After a Certain $ Amount

    If these need to be limited / grouped by job #s or customer, we'll need a larger set of data to account for that.

  12. #12
    Registered User
    Join Date
    04-17-2019
    Location
    Terre Haute, IN
    MS-Off Ver
    Office 2019 for Mac
    Posts
    6

    Re: Commision Figure Sheet: Figuring Commission After a Certain $ Amount

    Quote Originally Posted by Melvosh View Post
    If these need to be limited / grouped by job #s or customer, we'll need a larger set of data to account for that.
    Nope, they'll just be entered in as we get them. But, Melvosh, your formula is doing exactly as I needed! I'm going to send the sheet over to the one who is going to be using it the most, but I think she'll be happy. Just entering in some test data, everything seems to be working fine!

  13. #13
    Valued Forum Contributor
    Join Date
    01-07-2013
    Location
    Michigan
    MS-Off Ver
    O365
    Posts
    601

    Re: Commision Figure Sheet: Figuring Commission After a Certain $ Amount

    Please keep in mind that I just made a slight modification to mehmetcik's formula Glad we could help.

+ 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. Create a formula that gives a commission to sales over a certain amount.
    By JodieJ in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 03-09-2019, 02:50 PM
  2. Replies: 2
    Last Post: 03-21-2017, 04:17 PM
  3. [SOLVED] Formula to Calculate commission over certain amount
    By rizmomin in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 01-04-2014, 02:36 PM
  4. Replies: 3
    Last Post: 08-04-2013, 09:40 PM
  5. Replies: 1
    Last Post: 06-12-2012, 12:30 PM
  6. fixed amount to purchase, variable commission
    By Bossman7121 in forum Excel General
    Replies: 1
    Last Post: 12-09-2009, 05:44 PM
  7. Replies: 1
    Last Post: 07-10-2005, 06:05 AM

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