Tiered Bonus & Commission in Excel

jenni554

New Member
Joined
May 23, 2017
Messages
3
Hi,
I need to calculate the bonus that will be applied in addition to the normal 3% commission. The tiers are:

35000-50000 3.5% (bonus is only on amount within 35-50k)
50000-75000 5.0%
75000-100000 10.0%
100000-125000 15.0%

I need to be able to say for example: 65000 commission would be a bonus of 1275.00. Total payout: 66275. What would be the best way to set up a formula for this?
 
Please show what you have tried.

Suggestions
- if formula
- logic formula
- above suggestion

If the person sells 500 units what will he be paid?

If the person sells 500 units and $200 per they would be paid $100,000

All I have is a simple lookup that tells them the rate at which they are being paid out

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

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

<colgroup><col><col><col></colgroup><tbody>
</tbody>

I'm trying to figure out a way that as they go along week by week and add in their numbers that it would figure out commissions based on the tiers and spit out a number... less than 30 they get no commission 31 plus $125 each and so on.
 
Upvote 0

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
You could use a table similar to the one above:

BCDEFGHIJK
1TierRateDifferentialWeekSalesSales to dateBonusBonus to date
200015500
3311251252101500
461200753132800
54735500500
65104512501750
76196426004350
87218542008550
981862008750
1094145008280091550
1110
1211
1312
1413

<tbody>
</tbody>
Sheet6

Worksheet Formulas
CellFormula
I2=IF(H2<>"",SUM($H$2:$H2),"")
J2=IFERROR(K2-K1,K2)
K2=IF(H2<>"",SUMPRODUCT(--(SUM($H$2:$H2)>$B$2:$B$4),(SUM($H$2:$H2)-$B$2:$B$4),$D$2:$D$4),"")

<tbody>
</tbody>

<tbody>
</tbody>



Put the tiers and rates in B1:D4. Then you can create the table in G1:K14. Put the formulas in I2:K2, then drag down to row 14. Now as they enter their sales in column H, the totals in I:K will update automatically.

Note that this calculates a bonus of $91,550 for 500 sales. This is because the first 30 sales earned $0, and the next 30 earned $125 each. If you really do want a bonus of $100,000, then I can adjust the formulas.
 
Last edited:
Upvote 0
Your information is not clear.
What is the amount for 72 units

What is the amount for 500 units.


Excel 2010
ABCD
1Month 1Month 2Month 3
2Units270428
3Cumulative272500
4Payment total06,15091,750
506,15085,600
6
706,15091,750
8Prior06,15085,600
9
7a
Cell Formulas
RangeFormula
B3=SUM($B$2:B2)
B4=(B3>30)*B3*125+(B3>60)*(B3-30)*(200-125)
B5=B4-SUM($A$4:A4)
B7=IF(B3>30,B3*125,0)+(IF(B3>60,(B3-60)*(200-125),0))
B8=B7-SUM($A$7:A7)
C3=SUM($B$2:C2)
C4=(C3>30)*((C3-30)*125)+(C3>60)*(C3-60)*(200-125)
C5=C4-SUM($A$4:B4)
C7=IF(C3>30,(C3-30)*125,0)+(IF(C3>60,(C3-60)*(200-125),0))
C8=C7-SUM($A$7:B7)
D3=SUM($B$2:D2)
D4=(D3>30)*((D3-30)*125)+(D3>60)*(D3-60)*(200-125)
D5=D4-SUM($A$4:C4)
D7=IF(D3>30,(D3-30)*125,0)+(IF(D3>60,(D3-60)*(200-125),0))
D8=D7-SUM($A$7:C7)



Excel 2010
ABCDEF
1TierRateDiffCumulativeBonus
2000300.00
330125125726,150.00
4602007550091,750.00
5
7aa
Cell Formulas
RangeFormula
F2=SUMPRODUCT(--(E2>$A$2:$A$4),(E2-$A$2:$A$4),$C$2:$C$4)
F3=SUMPRODUCT(--(E3>$A$2:$A$4),(E3-$A$2:$A$4),$C$2:$C$4)
F4=SUMPRODUCT(--(E4>$A$2:$A$4),(E4-$A$2:$A$4),$C$2:$C$4)
 
Last edited:
Upvote 0
72 units would equal $10,500

500 units would equal $95,500 because the first 60 are at the $125 rate.

Your information is not clear.
What is the amount for 72 units

What is the amount for 500 units

Excel 2010
ABCD
1Month 1Month 2Month 3
2Units270428
3Cumulative272500
4Payment total06,15091,750
506,15085,600
6
706,15091,750
8Prior06,15085,600
9

<colgroup><col style="width: 25pxpx"><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
7a

Worksheet Formulas
CellFormula
B3=SUM($B$2:B2)
C3=SUM($B$2:C2)
D3=SUM($B$2:D2)
B4=(B3>30)*B3*125+(B3>60)*(B3-30)*(200-125)
C4=(C3>30)*((C3-30)*125)+(C3>60)*(C3-60)*(200-125)
D4=(D3>30)*((D3-30)*125)+(D3>60)*(D3-60)*(200-125)
B5=B4-SUM($A$4:A4)
C5=C4-SUM($A$4:B4)
D5=D4-SUM($A$4:C4)
B7=IF(B3>30,B3*125,0)+(IF(B3>60,(B3-60)*(200-125),0))
C7=IF(C3>30,(C3-30)*125,0)+(IF(C3>60,(C3-60)*(200-125),0))
D7=IF(D3>30,(D3-30)*125,0)+(IF(D3>60,(D3-60)*(200-125),0))
B8=B7-SUM($A$7:A7)
C8=C7-SUM($A$7:B7)
D8=D7-SUM($A$7:C7)

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>



Excel 2010
ABCDEF
1TierRateDiffCumulativeBonus
2000300.00
330125125726,150.00
4602007550091,750.00
5

<colgroup><col style="width: 25pxpx"><col><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
7aa

Worksheet Formulas
CellFormula
F2=SUMPRODUCT(--(E2>$A$2:$A$4),(E2-$A$2:$A$4),$C$2:$C$4)
F3=SUMPRODUCT(--(E3>$A$2:$A$4),(E3-$A$2:$A$4),$C$2:$C$4)
F4=SUMPRODUCT(--(E4>$A$2:$A$4),(E4-$A$2:$A$4),$C$2:$C$4)

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0
any of the three solutions can be edited to provide the correct answer.

You originally stated
"
...less than 30 they get no commission 31 plus $125 each and so on.



You have have a new post. Someone can provide an answer(s) as the question evolves!
 
Upvote 0

Forum statistics

Threads
1,214,974
Messages
6,122,536
Members
449,088
Latest member
RandomExceller01

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