H
hillryane
Trouble with seemingly simple formula
Original written formula (C4 and E4 are separate formula results)
In this example C4=1.02 E4=.61
C4>.66 and E4<.66 = Disc (Correct answer)
C4<.66 and E4<.66 = Blade
C4>.66 and E4>.66 = Sphere
C4<.66 and E4>.66 = Rod
Excel formula as I have it written.
=IF(C4>0.66&E4<0.66,"Disc",IF(C4<0.66&E4<0.66,"Blade",IF(C4>0.66&E4>0.66,"Sphere",IF(C4<0.66&E4>0.66,"Rod","Other"))))
Returns Sphere. Why? What have I done wrong.
Original written formula (C4 and E4 are separate formula results)
In this example C4=1.02 E4=.61
C4>.66 and E4<.66 = Disc (Correct answer)
C4<.66 and E4<.66 = Blade
C4>.66 and E4>.66 = Sphere
C4<.66 and E4>.66 = Rod
Excel formula as I have it written.
=IF(C4>0.66&E4<0.66,"Disc",IF(C4<0.66&E4<0.66,"Blade",IF(C4>0.66&E4>0.66,"Sphere",IF(C4<0.66&E4>0.66,"Rod","Other"))))
Returns Sphere. Why? What have I done wrong.