Advanced formula / function

ClaireGoode

New Member
Joined
Jan 6, 2017
Messages
13
Good morning all. I am new to this forum so hope that this makes sense to you!

I am trying to work out a commission/bonus model and want Excel to provide me with how much commission we should pay based on certain criteria - which includes a capped amount. We have 2 potential models to work with.

Example;

Sample No. of Units8,000,000
Sample Commission£1,500
MODEL 1
Base Units2,000,000The min units under which no Bonus applies
Step250,000The steps/graduations in the units that apply to the Bonus scheme
Step Bonus£250The bonus that applies for each step or graduation that is achieved
Cap10,000,000The cap that applies to the units, beyond which no additional Bonus is payable
ANSWERHelp here please!
MODEL 2
Base Units3,000,000The min units under which no Bonus applies

<tbody>
</tbody>
Step250,000The steps or graduations in the units that apply to the Bonus scheme
Step Bonus10.0%The bonus that applies for each step or graduation that is achieved
Cap20,000,000The cap that applies to the units, beyond which no additional Bonus is payable
ANSWERHelp here please!

<tbody>
</tbody>


Any help here would be greatly appreciated. I suspect I have attempted to make this harder than it needs to be and maybe I cannot see the simple solution!

Many thanks,

Claire Goode.
 

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.
what's the significant of

Sample Commission £1,500

in the example?
 
Upvote 0
The sample commission would be payable on the Sample number of units regardless of the 2 potential commission models. So when 8m is reached £1500 would automatically be paid. This would be on top of any amount in the graduated models. Thank you.
 
Upvote 0
bonus for both models are based on the units in Cell B1 (8,000,000)
am i anywhere near?


Excel 2012
ABC
1Sample No. of Units8,000,000
2Sample Commission£1,500
3
4MODEL 1
5Base Units2,000,000The min units under which no Bonus applies
6Step250,000The steps/graduations in the units that apply to the Bonus scheme
7Step Bonus£250The bonus that applies for each step or graduation that is achieved
8Cap10,000,000The cap that applies to the units, beyond which no additional Bonus is payable
9ANSWER£6,000Help here please!
10
11MODEL 2
12Base Units3,000,000The min units under which no Bonus applies
13Step250,000The steps or graduations in the units that apply to the Bonus scheme
14Step Bonus10.00%The bonus that applies for each step or graduation that is achieved
15Cap20,000,000The cap that applies to the units, beyond which no additional Bonus is payable
16ANSWER10,000,000Help here please!
Sheet9
Cell Formulas
RangeFormula
B9=INT((MIN(B8,B1)-B5)/B6)*B7
B16=INT(MIN(B15,B1)-B12)/B13*B14*(MIN(B15,B1)-B12)
 
Last edited:
Upvote 0
Thank you Alan. I'll have a look and see if it's working and let you know!! It will certainly be a lot, lot closer than I could get it!!! :)
 
Upvote 0
Hello again! Thanks again Alan, the formula for model 1 works great. However, the second model I got a bit confused on and turns out that the value in cell B2 could change and that 10% in B14 should be 10% of B2. If you, or anyone else can help with the second model that'd be great. Thank you.
 
Upvote 0
sorry that I've a off day yesterday, anyway, check this


Excel 2012
ABC
1Sample No. of Units8,000,000
2Sample Commission£1,500
3
4MODEL 1
5Base Units2,000,000The min units under which no Bonus applies
6Step250,000The steps/graduations in the units that apply to the Bonus scheme
7Step Bonus£250The bonus that applies for each step or graduation that is achieved
8Cap10,000,000The cap that applies to the units, beyond which no additional Bonus is payable
9ANSWER£6,000Help here please!
10
11MODEL 2
12Base Units3,000,000The min units under which no Bonus applies
13Step250,000The steps or graduations in the units that apply to the Bonus scheme
14Step Bonus10.00%The bonus that applies for each step or graduation that is achieved
15Cap20,000,000The cap that applies to the units, beyond which no additional Bonus is payable
16ANSWER£3,000Help here please!
Sheet1
Cell Formulas
RangeFormula
B9=INT((MIN(B8,B1)-B5)/B6)*B7
B16=INT((MIN(B15,B1)-B12)/B13)*B14*B2
 
Upvote 0
to make it more robust when the base units is not reached, can amend the formula to

B9 =MAX(0,INT((MIN(B8,B1)-B5)/B6)*B7)
and
B16 =MAX(0,INT((MIN(B15,B1)-B12)/B13)*B14*B2)
 
Upvote 0

Forum statistics

Threads
1,214,394
Messages
6,119,263
Members
448,881
Latest member
Faxgirl

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