Multiple IFs formula !!!!

Bahaa

New Member
Joined
Oct 3, 2013
Messages
46
I have to use a IF formula to calculate commision payments at a different % categories.

The target fixed cell is B4 100,000 USD
if he achieve 100% of his target , he will be eligible to 30% commisison
if he achieve between 75% & 99% of his target , he will be eligible to 20% commisison
if he achieve between 50% & 74% of his target , he will be eligible to 10% commisison
below 50% commission is Zero

Thank you
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
how about
using IF - but you could use tables

is that 20% of what he has achieved or 20% of the 100,000

=IF( B4>=100000,100000*0.3,if(b4>=(0.75*100000),100000*0.2,if(b4>=(0.5*100000),100000*0.1,0)))
 
Upvote 0
try

=IF(B4>=100000, B4*IF(B4>=100000, 0.3, IF(B4>=75000, 0.2, IF(B4>=50000, 0.1, 0))), IF(B4>=75000, B4*0.2, IF(B4>=50000, B4*0.1, 0)))
 
Upvote 0
What version of Excel are you using?

I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)
 
Upvote 0
I always use table for that sort of thing (as @etaf also suggested)

Book1
ABCDEFGH
1
2
3
4Target100,000
5Lookup Achieved % to get Commission Rate
6
7EmployeeSales% CommissionFromTo (Optional)Commision Rate
8John30,0000%0%49%0%
9Peter50,00010%50%74%10%
10Mary70,00010%75%99%20%
11Alfred90,00020%100%30%
12Zoe110,00030%
13
Sheet1
Cell Formulas
RangeFormula
C8:C12C8=VLOOKUP(ROUND(B8/$B$4,2),$E$8:$G$11,3,TRUE)
 
Upvote 0
Solution

Forum statistics

Threads
1,216,075
Messages
6,128,665
Members
449,462
Latest member
Chislobog

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