Tiered commissions calculator

antsal

New Member
Joined
Nov 4, 2012
Messages
5
I am trying to create a formula for a tiered commissions calculator and have come up with the following:

=IF(C7<1000001,C7*0.02, IF(C7>1000001,C7*0.035,IF(C7>3000001,C7*0.04, IF(C7>5000001,C7*0.05))))

It doesn't seem to work properly, the calculation stops after the IF(C7>1000001,C7*0.035 IF STATEMENT and does not go on to use the rest of the formula.
Any assistance fixing this or creating a tiered commission calculation based on the 2% 3.5% 4% & 5% against the figures above would be great.

Thanks.
 
Will try the VLOOKUP and see if that works.

Thanks so much for your help.

00.02
1,000,0000.035
3,000,0000.04
5,000,0000.05
700,00014,00014,00014,00014,00014,000
4,000,000140,000160,000160,000160,000160,000
8,000,000280,000400,000400,000400,000400,000

<COLGROUP><COL style="WIDTH: 48pt" span=6 width=64><TBODY>
</TBODY>

C2:D4 houses tiers and rates. If so desired, C1:C4 --> TIERS and D1:D4 --> RATES.

D7, copied down:

=LOOKUP(C7,TIERS,RATES)*C7

E7, copied down:

=LOOKUP(C7,$C$1:$C$4,$D$1:$D$4)*C7

F7, copied down:

=LOOKUP(C7,{0;1000000;3000000;5000000},{0.02;0.035;0.04;0.05})*C7

G7, copied down:

=VLOOKUP(C7,$C$1:$D$4,2,1)*C7

H7, copied down:

=INDEX($D$1:$D$4,MATCH(C7,$C$1:$C$4,1))*C7
 
Upvote 0

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.

Forum statistics

Threads
1,215,046
Messages
6,122,849
Members
449,096
Latest member
Erald

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