I am using the coding below and it is not working quite like I expected. What I am doing is checking the value of a cell. What I am looking for is
1)if cell is NA it returns a ""
2)it returns either an EQ ot an OT based on the value of the cell. If it is below a certain number or above a certain it returns an EQ other wise it returns and OT.
When I use this formula the <> doesn't seem to work. It checks the first argument but not the combination.
ie I have a value of .2503 that I want to return an OT but during IF((0.5422>VLOOKUP($B15,Monday!$C$3:$F$38,4,FALSE)>0.3337)it merely checks to see if .2503 is less then .5422 and return a true.
=IF(ISNA(VLOOKUP($B15,Monday!$C$3:$F$38,4,FALSE)),"",(IF(VLOOKUP($B15,
Monday!$C$3:$F$38,4,FALSE)<0.18655,"EQ",(IF((0.5422>VLOOKUP($B15,Monday!
$C$3:$F$38,4,FALSE)>0.3337),"EQ",(IF(VLOOKUP($B15,Monday!$C$3:$F$38,4,
FALSE)>0.19555,"OT",0)))))))
1)if cell is NA it returns a ""
2)it returns either an EQ ot an OT based on the value of the cell. If it is below a certain number or above a certain it returns an EQ other wise it returns and OT.
When I use this formula the <> doesn't seem to work. It checks the first argument but not the combination.
ie I have a value of .2503 that I want to return an OT but during IF((0.5422>VLOOKUP($B15,Monday!$C$3:$F$38,4,FALSE)>0.3337)it merely checks to see if .2503 is less then .5422 and return a true.
=IF(ISNA(VLOOKUP($B15,Monday!$C$3:$F$38,4,FALSE)),"",(IF(VLOOKUP($B15,
Monday!$C$3:$F$38,4,FALSE)<0.18655,"EQ",(IF((0.5422>VLOOKUP($B15,Monday!
$C$3:$F$38,4,FALSE)>0.3337),"EQ",(IF(VLOOKUP($B15,Monday!$C$3:$F$38,4,
FALSE)>0.19555,"OT",0)))))))