anuradhagrewal
Board Regular
- Joined
- Dec 3, 2020
- Messages
- 87
- Office Version
- 2010
- Platform
- 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!
[/CODE][/CODE]
Please help
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","")
Please help