Please Help, This should be way easier than I'm making it

tommygunnz

New Member
Joined
Dec 20, 2017
Messages
17
I'm trying to make a bonus structure for commission.

0-5=$0
6-10=$50 per unit
11+=$150 per unit

so far I have =(M29>=6)*(M29*50)

how do I add another function so m29>=11 * m29*150??

 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
0-5=$0mytable
6-10=$50 per unit
11+=$150 per unit00
650
11150
salesbonus
20#####
750
13150
00
40
650
850
950
12150
14150
####
=VLOOKUP(F11,mytable,2)

<colgroup><col span="14"></colgroup><tbody>
</tbody>
 
Upvote 0
Possible way as long as you dont have too many categories:

=M29*LOOKUP(M29,{0,6,11},{0,50,150})
 
Upvote 0
Hi There

This will give you what you've asked for =IF(M29<6,0,IF(M29<11,M29*50,M29*150))

I suspect that isnt what you want, though I could be wrong. I suspect what you want is first 5 units are nil bonus, 6 to 10 units is bonus on units 6,7,8,9 and 10 of $50 each bonus on 11 and greater is $50 on units 6 to 10 and then 150 units on 11+

so 14 units is 5 x 0 +5 x 50 and 4 x150 ?

Which one do you want?
 
Upvote 0
This will give you increments. So first 5 units 0, up to next 5= units x 50 and remainder units > 10 * 150

=IF(M29<6,0,IF(AND(M29>5,M29<11),(M29-5)*50,IF(M29>10,5*50+(M29-10)*150)))
 
Upvote 0

Forum statistics

Threads
1,216,058
Messages
6,128,538
Members
449,456
Latest member
SammMcCandless

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