Tiered Commissions Calc

lcblick

New Member
Joined
Jul 28, 2017
Messages
12
Hi,
I was wondering if someone could help me with this.
I have a tiered commissions structure as follows:
0-100% attainment (Total payout of 100% of eligible %)
100-125% (total payout of 1.5% of eligible %)
125%+ (total payout of 2.5% of eligible %)
accelerated commission rate not to exceed 15%

In addition, a secondary quota will be assigned . If this quota is hit, a 10% bonus calced on the full amount of commissioned revenue will deternmine amount.

Thank You...
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Please check your description and provide a couple of examples with expected results.
 
Upvote 0
Thanks Dave.
Let's say that on achievement (Revenue vs. Goal) of anywhere between 0 and 100%, payout is 5% of the revenue. If $100k revenue and $100k goal, assume $5,000 payout
If the achievement is 110% ($110,000 vs $100k goal), payout would be $5,000 on the 1st $100k and then 1.5 X the 1st 5% or 7.5% of $10k or an additional $750\
If achievement is 130% ($130k vs $100k goal), payout would be $5k + 7.5%x$25k ($1875) +12.5%x$5k ($625)

I hope that helps. It's basically calculating commissions after meeting the tresholds of multiple tiers. Once you exceed a tier, you are paid in full on that tier and the balnce is paid on the next tier, etc.

Thanks...

0-100% attainment (Total payout of 100% of eligible %)
100-125% (total payout of 1.5% of eligible %)
125%+ (total payout of 2.5% of eligible %)
accelerated commission rate not to exceed 15%

In addition, a secondary quota will be assigned . If this quota is hit, a 10% bonus calced on the full amount of commissioned revenue will deternmine amount
 
Upvote 0

Excel 2010
ABCDEFG
1AmountGoalAttainmentCommissionBracketRateRate Diff
2100,000.00100,000.00100%$5,000.0005.0%5.0%
3100,0007.5%2.5%
4125,00012.5%5.0%
6b
Cell Formulas
RangeFormula
C2=A2/B2
D2=SUMPRODUCT(--(A2>E2:E4),A2-E2:E4,G2:G4)
E3=B2
E4=B2*1.25
G2=F2-N(F1)
G3=F3-N(F2)
G4=F4-N(F3)
 
Upvote 0
Thanks for this. Is there a way that I can show the Commission breakout by tier? Much appreciated.
 
Upvote 0
Excel 2010
ABCDEFGH
1AmountGoalAttainmentCommissionBracketRateRate Diff
2130,000.00100,000.00130%$7,500.0005.0%5.0%5,000.00
3100,0007.5%2.5%1,875.00
4125,00012.5%5.0%625.00
5

<colgroup><col style="width: 25pxpx"><col><col><col><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
6b

Worksheet Formulas
CellFormula
C2=A2/B2
D2=SUMPRODUCT(--(A2>E2:E4),A2-E2:E4,G2:G4)
E3=B2
F3=1.5*F2
E4=B2*1.25
F4=2.5*F2
H2=MIN($A$2,E3-E2)*F2
H3=MIN($A$2-100000,E4-E3)*F3
H4=(A2-E4)*F4

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

<tbody>
</tbody>


Thanks again. What happens if the attainment is 100 or less? I am getting the 2nd and 3rd tiers showing negative numbers.
 
Upvote 0
Thank you so much. The issue I am facing is if the 2nd and 3rd tiers are showing negative numbers if the attainment is 100 or less. Those tiers should show zero and only the 1st tier should shoe me the value.
 
Upvote 0
I thought your would revise the formulas for your actual requirements.
You can review the following and hopefully some part will address your issues.


Excel 2010
ABCDEFGH
1AmountGoalAttainmentCommissionBracketRateRate DiffAttainment tiered commission
2130,000.00100,000.00130%$7,500.0005.0%5.0%5,000.00
3100,0007.5%2.5%1,875.00
4125,00012.5%5.0%625.00
5130,000
6
7
8Tier # 1Tier # 2Tier # 3
9Rate5.0%7.5%12.5%
10Goal100,000.00Tier from0100,000.00125,000.00
11Actual130,000.00Tier to100,000.00125,000.00130,000.00
12Commission$5,000.00$1,875.00$625.00
13
14$5,000.00$1,875.00$625.00
15$5,000.00$1,875.00$625.00
6b
Cell Formulas
RangeFormula
C2=A2/B2
D2=SUMPRODUCT(--(A2>E2:E4),A2-E2:E4,G2:G4)
D11=B10
D12=MAX(0,MIN($B$11-D10,D11-D10))*D9
D14=($B$11>D10)*MIN($B$11,D11-D10)*D9
D15=($B$11>0)*MIN($B$11,100000-0)*0.05
G2=F2-N(F1)
G3=F3-N(F2)
G4=F4-N(F3)
H2=MAX(0,MIN($A$2-E2,E3-E2))*F2
H3=MAX(0,MIN($A$2-E3,E4-E3))*F3
H4=MAX(0,MIN($A$2-E4,E5-E4))*F4
E3=B2
E4=B2*1.25
E5=A2
E10=D11
E11=B10*1.25
E12=MAX(0,MIN($B$11-E10,E11-E10))*E9
E14=($B$11>E10)*MIN($B$11,E11-E10)*E9
E15=($B$11>100000)*MIN($B$11,125000-100000)*0.075
F3=1.5*F2
F4=2.5*F2
F10=E11
F11=B11
F12=MAX(0,MIN($B$11-F10,F11-F10))*F9
F14=($B$11>F10)*MIN($B$11,F11-F10)*F9
F15=($B$11>125000)*MIN($B$11,B11-125000)*0.125
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,692
Members
448,979
Latest member
DET4492

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