Bonus payout calculator based on units sold not percentage of cash

snakel87

New Member
Joined
Aug 9, 2017
Messages
8
Mr. Excel Forum,

I have a sales team that gets paid based on units sold not dollars sold and then a percentage for bonus. I'm trying to figure out a formula that would allow them to track sales and see potential commissions.
For basic math sake they need to sell 60 units a quarter.
They only get paid if they hit the 50% threshold (30 units) at $125 until 60 units which equals $7500.00 . Everything after 60 units is $200 each with no cap.
I'm trying to find a formula that as they enter their weekly totals it calculates at the correct rate meaning as they go along it shows no commission earned until 30 units are entered and then it steps up again at 60... is this even possible?

All I have so far is a simple lookup tool that tells them the rate at which they are being paid out using VLOOKUP

=VLOOKUP(C10,$C$4:$D$6,2,TRUE)

Sales TiersTier MinimumPayout Rate
0-300$0
31-5931$125
$6060$200

<tbody>
</tbody>


Thanks,

David


 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Build a worksheet that your sales team can add their weekly sales to and it will sum up at the bottom. Connect the following to your Sum total(eg sum=A25):

Code:
=IF(AND(31<=A25,A25<=59),(A25-30)*125, IF(A25>59,(59*125)+(A25-59)*200,""))
 
Upvote 0
Build a worksheet that your sales team can add their weekly sales to and it will sum up at the bottom. Connect the following to your Sum total(eg sum=A25):

Code:
=IF(AND(31<=A25,A25<=59),(A25-30)*125, IF(A25>59,(59*125)+(A25-59)*200,""))


Beyond- This is so close, however at 31 units it should be $3875 and it's coming up $125. 60 units should come up to $7500. It's just a little off and I've tweaked it here and there but still can't figure it out.
 
Upvote 0

Excel 2010
ABCD
1Week 1Week 2Week3
2Units258440
3Cumulative260500
4Payment total07,50095,500
507,50088,000
6
7IF formula07,50095,500
8Prior07,50088,000
9
10Gross arithmetic check95500
7aaa


Any of the 3 alternatives suggested previously should work for you.
 
Upvote 0
Then your chart is confusing me. I thought all units up to and including 59 would be at $125= $7,375.

Your latest statement indicates a desire to have the first 60 units at $125= $7,500

Thus all units beyond 61 are at $200 each.

This will do that
Code:
=IF(AND(31<=A25,A25<=60),(A25)*125, IF(A25>60,(60*125)+(A25-60)*200,""))
 
Upvote 0
Then your chart is confusing me. I thought all units up to and including 59 would be at $125= $7,375.

Your latest statement indicates a desire to have the first 60 units at $125= $7,500

Thus all units beyond 61 are at $200 each.

This will do that
Code:
=IF(AND(31<=A25,A25<=60),(A25)*125, IF(A25>60,(60*125)+(A25-60)*200,""))

Beyond,

Thank you for your help. Sorry for the confusion, which is probably why I'm having such a hard time getting my head wrapped around the formulas. With your current formula string is it possible once the total is at =or<31 then all units count as $125.
In other words if they sell 30 units they get $0, however if they sell 31 units it counts as 31 x $125 = $3875.
60 units would equal $7500 and then every unit after is $200.
Are we making this too complicated?

Thanks,

David
 
Upvote 0
C3 has cumulative sales

=(C3>30)*(C3*125+(C3>60)*(C3-60)*(200-125))

You can step through the formally manually step by step or use Excel's Formulas Formula Evaluate.
 
Upvote 0
In other words if they sell 30 units they get $0, however if they sell 31 units it counts as 31 x $125 = $3875.
60 units would equal $7500 and then every unit after is $200.

The latest formula should do just that. I'll try to explain what is going on.

Code:
Set up cell A25 to =SUM("Fill in your range of cells that would be the number of sales inputted").  This is going to add up whatever numbers are placed into that range.

=IF(                                            An "IF statement" asks a question that will either return a True or False result

AND(31<=A25,A25<=60),           This is the first question I am asking. Is the summed up number in cell A25 greater than or equal to 31. At 30 units is not and will return a "False". The false condition does not trigger the "TRUE" response of (A25)*125. It thus goes to the False result, which again asks another "IF" (will address below).

If the SUM is 31, then 31 <=31 [COLOR=#FF0000]AND[/COLOR] 31<=60. Since both of these statements are TRUE; the TRUE result is triggered and A25=31 units will be multiplied by $125=$3,875.


,IF(A25>60                             IF A25 fails the first question (AND(31<=A25,A25<=60)), by being less than 31 or more than 60; then this second question is asked. If A25>60 then the question triggers the TRUE response of, (60*125)+(A25-60)*200. Your first 60 units have a commission of $125 each= $7,500. Plus all units after 60 (A25-60) at $200 each. (eg A25 =61; (60*125)+(61-60)*200)). For each unit over 60; you should see a $200 incremental change over $7,500.

In the second question, I asked if A25 was greater than 60. If A25 is less than 30, then it failed the first question (AND(31<=A25,A25<=60)). It then fails the second question (A25>60) and this triggers the False responses of ,[COLOR=#FF0000]"")      [/COLOR]This result of [COLOR=#FF0000]"" [/COLOR]will make the cell [COLOR=#FF0000][/COLOR]appear blank until a TRUE result happens.

I hope that clears it up.
 
Upvote 0
The latest formula should do just that. I'll try to explain what is going on.

Code:
Set up cell A25 to =SUM("Fill in your range of cells that would be the number of sales inputted").  This is going to add up whatever numbers are placed into that range.

=IF(                                            An "IF statement" asks a question that will either return a True or False result

AND(31<=A25,A25<=60),           This is the first question I am asking. Is the summed up number in cell A25 greater than or equal to 31. At 30 units is not and will return a "False". The false condition does not trigger the "TRUE" response of (A25)*125. It thus goes to the False result, which again asks another "IF" (will address below).

If the SUM is 31, then 31 <=31 [COLOR=#FF0000]AND[/COLOR] 31<=60. Since both of these statements are TRUE; the TRUE result is triggered and A25=31 units will be multiplied by $125=$3,875.


,IF(A25>60                             IF A25 fails the first question (AND(31<=A25,A25<=60)), by being less than 31 or more than 60; then this second question is asked. If A25>60 then the question triggers the TRUE response of, (60*125)+(A25-60)*200. Your first 60 units have a commission of $125 each= $7,500. Plus all units after 60 (A25-60) at $200 each. (eg A25 =61; (60*125)+(61-60)*200)). For each unit over 60; you should see a $200 incremental change over $7,500.

In the second question, I asked if A25 was greater than 60. If A25 is less than 30, then it failed the first question (AND(31<=A25,A25<=60)). It then fails the second question (A25>60) and this triggers the False responses of ,[COLOR=#FF0000]"")      [/COLOR]This result of [COLOR=#FF0000]"" [/COLOR]will make the cell appear blank until a TRUE result happens.

I hope that clears it up.

Beyond,

The formula is perfect!!! Thank you Thank you. I was beating my head against the wall on this one.

Very Much appreciated,

David
 
Upvote 0
I was trying to solve this problem with Sumproducts.


Sheet1

ABCD
1Sales TiersTier MinimumPayout RateDifferential rate
20-300$0$0
331-5930$125$125
4$6060$200$75
5
6
735 $ 21,875.00
831 $ 3,875.00
960 $ 225,000.00
1065 $ 308,750.00

<tbody>
</tbody>

Spreadsheet Formulas
CellFormula
D2=C2-N(C1)
D3=C3-N(C2)
D4=C4-N(C3)
B7=SUMPRODUCT(--($A7>$B$2:$B$4),($A7-$B$2:$B$4),A7*$D$2:$D$4)
B8=SUMPRODUCT(--($A8>$B$2:$B$4),($A8-$B$2:$B$4),A8*$D$2:$D$4)
B9=SUMPRODUCT(--($A9>$B$2:$B$4),($A9-$B$2:$B$4),A9*$D$2:$D$4)
B10=SUMPRODUCT(--($A10>$B$2:$B$4),($A10-$B$2:$B$4),A10*$D$2:$D$4)

<tbody>
</tbody>

<tbody>
</tbody>




Does anyone know how to answer this question using Sumproducts?
Your help would be greatly appreciated.

Biz
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,827
Messages
6,121,817
Members
449,049
Latest member
cybersurfer5000

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top