Commission Model Help - Varying Payout Rates

EMC0625

New Member
Joined
Nov 18, 2014
Messages
4
I am stuck on an IF statement for my employee commission model and could use some help. The commission plan is quite simple and is based on new accounts the sales rep brings in. Here is a quick example with arbitrary numbers:

Sales Rep #1

2016 Account Quota: 330
Payout Rate per account up to 100% of quota: $25
Payout rate per account between 100-200% of quota: $50
Payout rate per account above 200% of quota: $75

While the quota is an annual quota we make monthly payouts (e.g. January new accounts of 50 pays a $1,250 commission)

Where I am stuck on my IF statement is when, in a given month, the sales rep crosses into the next tier and paying a blended rate. It's not as simple as using a lookup table with percentage payouts since this a flat rate payout based on the number of accounts a sales rep brings in.

In the example below you will see the sales rep jumps tiers in October and thus the payout will be a combination of tier 1 and tier 2. This is where I cannot develop an IF statement to work and pay a blended rate, and work for the remainder of the year at the next tier.


TotalCumulative
% of Quota
Payout
January-16353511%
February-16357021%
March-163510532%
April-163514042%
May-163517553%
June-163521064%
July-163524574%
August-163528085%
September-1635315
95%
October-1635350106%
November-1635385117%
December-1635420127%

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


ANY help or suggestions are greatly appreciated!
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
I think I noodled it out. Copy the formulas in Row 7 downwards. I altered the December figure to test the absurd-looking IF statement.

I happen to KNOW there is a superior way...I just can't remember it. But this will suffice, I hope.

ABCDEF
12016 Quota330
2Payout rateup to100%of quota:$25
3Payout rateup to200%of quota:$50
4Payout rateoverof quota:$75
5
6TotalCumulative% of QuotaPayout
71-Jan-16353511% 875
81-Feb-16357021% 1,750
91-Mar-163510532% 2,625
101-Apr-163514042% 3,500
111-May-163517553% 4,375
121-Jun-163521064% 5,250
131-Jul-163524574% 6,125
141-Aug-163528085% 7,000
151-Sep-163531595% 7,875315@25
161-Oct-1635350106% 9,250330@25 + 20@50
171-Nov-1635385117% 11,000330@25 + 55@50
181-Dec-16350735223% 30,375330@25+330@50+75@75

<tbody>
</tbody>
Sheet15

Worksheet Formulas
CellFormula
C7=B7
D7=C7/$E$1
E7=IF(C7>$E$1*$C$3,$E$1*($E$2+$E$3)+(C7-$E$1*$C$3)*$E$4,IF(C7<=$E$1*$C$2,C7*$E$2,$E$1*$E$2+(C7-$E$1)*$E$3))

<tbody>
</tbody>

<tbody>
</tbody>
 
Last edited:
Upvote 0
Tricky problem. I managed to accomplish this with the help of a few helper columns, which you can hide after you set them up.

For the purposes of this example, I assumed you have a header in row 1, and your columns are A-D, with the payout in E. I also built a table in I2:J3 with your quota and payouts. This will make it easier to maintain in the future. This can be moved, to another sheet if necessary. Given that, enter these values/formulas:

E2: =F2*$J$2+G2*$J$3+H2*$J$4
F2: =MAX(MIN($I$3-C2+B2,B2),0)
G2: =B2-F2-H2
H2: =MIN(MAX(C2-$I$4,0),B2)

I2: 0
I3: 330
I4: 660
J2: 25
J3: 50
J4: 75

Then select E2:H2, copy it, then paste it to E3:H13.
The F, G, and H columns calculate how many accounts fall into each tier. The E-H formulas theoretically could be combined into 1 function, but it would be a monster.

Let me know how that works.
 
Upvote 0

Forum statistics

Threads
1,215,453
Messages
6,124,930
Members
449,195
Latest member
Stevenciu

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