Compounding Commission Schedule

CMJ

New Member
Joined
Jul 26, 2012
Messages
11
Hi All,

I'm very new to this forum so please forgive me. I'm trying to create a compounding commission schedule that is as follows:


  • 10% of the amount from $0 - $50,000 with a minimum of $1,000
  • 5% of the amount from $50,001 – $100,000
  • 3% of the amount from $100,001 - $250,000
  • 2% of the any amount above $250,001

For example, a sale of 70K would provide 5,000 in commission on the first 50K, and 1000 in commission on the next 20K.

I've tried creating a nested if statement, but I'm having trouble wrapping my head around it. To make issues worse, there's also a minimum commission amount of 1000$ no matter how low the selling price.

I'd truly appreciate any help you all could provide! Thank you in advance for your help.

Chris
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Hi All,

I'm very new to this forum so please forgive me. I'm trying to create a compounding commission schedule that is as follows:


  • 10% of the amount from $0 - $50,000 with a minimum of $1,000
  • 5% of the amount from $50,001 – $100,000
  • 3% of the amount from $100,001 - $250,000
  • 2% of the any amount above $250,001

For example, a sale of 70K would provide 5,000 in commission on the first 50K, and 1000 in commission on the next 20K.

I've tried creating a nested if statement, but I'm having trouble wrapping my head around it. To make issues worse, there's also a minimum commission amount of 1000$ no matter how low the selling price.

I'd truly appreciate any help you all could provide! Thank you in advance for your help.

Chris
See if you can adapt the technique described here:

http://mcgimpsey.com/excel/variablerate.html
 
Upvote 0
Assuming the sale number is in A1:
=IF(A1 > 50000,IF(A1 > 100000,IF(A1 > 250000,12000+(A1-250000)*.02,7500+(A1-100000)*.03),5000+(A1-50000)*.05),MAX(A1*.1,1000))
 
Upvote 0
Welcome to the board.

=MAX(1000, SUMPRODUCT((A1 > {0;5;10;25}*10000)*(A1 - {0;5;10;25}*10000) * {10;-5;-2;-1}%))
 
Upvote 0
Welcome to the board.

=MAX(1000, SUMPRODUCT((A1 > {0;5;10;25}*10000)*(A1 - {0;5;10;25}*10000) * {10;-5;-2;-1}%))


Thank you for some great answers. I must admit, these are much more elegant than the formulas I was working with. It's good to know I've still got a lot left to learn!

To that effect, I have no idea how the formula above is generating the answer it is. An explanation would be great to facilitating future use!

Many Thanks,

Chris
 
Upvote 0
The formula says ...

If the amount is > 0, you get 10% commission on everything (too much, but hold on)

If the amount is > 50K, you lose 5% commission on everything over 50K

If the amount is > 100K, you lose another 2% commission on everything over 100K

If the amount is > 250K, you lose another 1% commission on everything over 250K

... all wrapped with Max to ensure a minimum of $1K.

The {10;-5;-2;-1}% is the change in commission between tiers.
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,399
Latest member
alchavar

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