Tiered Commission Formula

sarahabb

New Member
Joined
Dec 8, 2008
Messages
6
Hi Board,

I'm trying to create a formula to calculate a tiered commission schedule. The schedule is:
50% for up to $10,000
60% for $10,001-$15,000
70% above $15,000

So far I have figured out a formula that calculates all the commissions but I can't get it to stop taking the 50% after 10,000 or the 60% after 15,000. Please help! :confused:

thanks!
Sarah
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Try: =(A1>15000)*0.7*A1+(AND(A1>10000,A1<15001)*0.6*A1)+(A1<10001)*(0.5*A1)
 
Upvote 0
Try:

=A1*LOOKUP(A1,{0,10001,15000},{0.5,0.6,0.7})

This worked on my end.
 
Last edited:
Upvote 0
Mr Kowz,

Very interesting formula but I can't get it to work on my end. For example, let's say total sales were $20,000. When I use that formula, the commission comes out to $14,000 but when I do the calculations myself, the commission should be $11,500.

$5000 for the 50% up to $10000
$3000 for the 60% of $15,000-$10,000
$3500 for the 70% of $20,000-$15,000

Does that make sense? I still have no idea what to do...
 
Upvote 0
Only quickly tested but try =A1*0.5+((A1>10000)*(A1-10000)*0.1)+((A1>15000)*(A1-15000)*0.1)
 
Upvote 0
Hi, I have a similar issue but cannot get the final formula adopted onto my scheme...

my comms structure has a threshold where no commission is paid, see below...

0-40000 - ZERO%
40001-100000 - 20%
100001-200000 - 25%
200001-300000 - 30%
300001-350000 - 40%
350001+ - 50%

E.G. if the sales were 250,000, the final figure would be:

40001-100000 = 12000
100000-200000 = 25000
200001-250000 = 15000
TOTAL 52,000

The field in question is F23 - any suggestions???

Many thanks in advance! :biggrin::biggrin::biggrin:
 
Upvote 0

Forum statistics

Threads
1,215,054
Messages
6,122,897
Members
449,097
Latest member
dbomb1414

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