Unable to put multiple IF(AND conditions

anuradhagrewal

Board Regular
Joined
Dec 3, 2020
Messages
85
Office Version
  1. 2010
Platform
  1. Windows
Hi
This is my excel file

I am trying to put a band automatically in column W but it is not happening
What I need is that if an
Employee salary is >= 15000 but less than 20000 then he/she be in Band "I"
similarly in increments of 5000 till band "XV"
However the above formula is sending an error #VALUE!

Excel Formula:
[CODE=xls][CODE=xls]
=IF(AND(G5>=15000,G5<=20000),"I",""),IF(AND(G5>=20001,G5<=25000),"II",""),IF(AND(G5>=25001,G5<=30000),"III",""),IF(AND(G5>=30001,G5<=35000),"IV",""),IF(AND(G5>=35001,G5<=40000),"V",""),IF(AND(G5>=40001,G5<=45000),"VI",""),IF(AND(G5>=45001,G5<=50000),"VIII",""),IF(AND(G5>=50001,G5<=55000),"IX",""),IF(AND(G5>=55001,G5<=60000),"X",""),IF(AND(G5>=60001,G5<=65000),"XI",""),IF(AND(G5>=65001,G5<=70000),"XII",""),IF(AND(G5>=70001,G5<=75000),"XIII",""),IF(AND(G5>=75001,G5<=80000),"XIV",""),IF(AND(G5>=80001,G5<=100000),"XV","")
[/CODE][/CODE]

Please help
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
first thing that i noticed is that you are giving both the true condition and the false condition in each of your IF statements. When using an nested if statement, one of the conditions needs to lead into the next if statement. by this i mean,
= if (x =10, "True", if(x=12,"Red",if(and(x=14,y=10),"Green", "")

which reads if X equals ten return TRUE, but if X=12. return "RED", but if X=14 and y = 10, return "Green". if none of these, make it blank ("").

Excel Formula:
[CODE=xls]
=IF(AND(G5>=15000,G5<=20000),"I",[COLOR=rgb(184, 49, 47)][B]""[/B][/COLOR]),IF(AND(G5>=20001,G5<=25000),"II",[COLOR=rgb(184, 49, 47)][B]""[/B][/COLOR]),IF(AND(G5>=25001,G5<=30000),"III",[COLOR=rgb(184, 49, 47)][B]"")[/B][/COLOR],IF(AND(G5>=30001,G5<=35000),"IV",""),IF(AND(G5>=35001,G5<=40000),"V",""),IF(AND(G5>=40001,G5<=45000),"VI",""),IF(AND(G5>=45001,G5<=50000),"VIII",""),IF(AND(G5>=50001,G5<=55000),"IX",""),IF(AND(G5>=55001,G5<=60000),"X",""),IF(AND(G5>=60001,G5<=65000),"XI",""),IF(AND(G5>=65001,G5<=70000),"XII",""),IF(AND(G5>=70001,G5<=75000),"XIII",""),IF(AND(G5>=75001,G5<=80000),"XIV",""),IF(AND(G5>=80001,G5<=100000),"XV","")
[/CODE]


it would look something like this:
Excel Formula:
[CODE=xls]
=IF(AND(G5>=15000,G5<=20000),"I",IF(AND(G5>=20001,G5<=25000),"II",IF(AND(G5>=25001,G5<=30000),"III",IF(AND(G5>=30001,G5<=35000),"IV",IF(AND(G5>=35001,G5<=40000),"V",IF(AND(G5>=40001,G5<=45000),"VI",IF(AND(G5>=45001,G5<=50000),"VIII",IF(AND(G5>=50001,G5<=55000),"IX",IF(AND(G5>=55001,G5<=60000),"X",IF(AND(G5>=60001,G5<=65000),"XI",IF(AND(G5>=65001,G5<=70000),"XII",IF(AND(G5>=70001,G5<=75000),"XIII",IF(AND(G5>=75001,G5<=80000),"XIV",IF(AND(G5>=80001,G5<=100000),"XV",""))))))))))))))
[/CODE]
 
Last edited:
Upvote 0
You'd probably be better off with a lookup function, easier to debug than a long nested IF. For example:

Book2
GH
534567IV
Sheet9
Cell Formulas
RangeFormula
H5H5=LOOKUP(G5,{0,15000,20001,25001,30001,35001,40001,45001,50001,55001,60001,65001,70001,75001,80001,100001},{"","I","II","III","IV","V","VI","VII","VIII","IX","X","XI","XII","XIII","XIV",""})


When parsing out your original formula, I noticed that you were missing VII. It's much easier to spot like this.
 
Upvote 0
The "VII" (7) is missing from your formula. So the numbering ends at 90000

Other ways:

varios 05mar2024.xlsm
GHI
4Option 1Option 2
515000II
620000II
725000IIII
830000IIIIII
935000IVIV
1040000VV
1145000VIVI
1250000VIIVII
1355000VIIIVIII
1460000IXIX
1565000XX
1670000XIXI
1775000XIIXII
1880000XIIIXIII
1985000XIVXIV
2090000XVXV
Hoja1
Cell Formulas
RangeFormula
H5:H20H5=IF(G5<15000,"",IF(G5<=20000,"I",IF(G5<=25000,"II",IF(G5<=30000,"III",IF(G5<=35000,"IV",IF(G5<=40000,"V",IF(G5<=45000,"VI",IF(G5<=50000,"VII",IF(G5<=55000,"VIII",IF(G5<=60000,"IX",IF(G5<=65000,"X",IF(G5<=70000,"XI",IF(G5<=75000,"XII",IF(G5<=80000,"XIII",IF(G5<=85000,"XIV",IF(G5<=90000,"XV",""))))))))))))))))
I5:I20I5=IF(OR(G5<15000,G5>90000),"",ROMAN(IF(G5=15000,1,INT((G5/5000)-3)+((G5/5000)-3 > INT((G5/5000)-3)))))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,104
Messages
6,123,113
Members
449,096
Latest member
provoking

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