Issue
I want to get a formula for the below conditions:
null | <0.65 then 16
>=1.13 & <2.23 then 8
>=2.23 then 0
I tried:
=If(B3=0,16,IF (B3<0.65,16,IF (B3>=0.65,11,AND (B3<1.13,11,IF (B3>=1.13,8,AND (B3<2.23,8,If(B3>=2.23,0)))))))
Solution
Give a try on below formula-
=IF(OR(B3="",B3=0,B3<0.65),16,IF(AND(B3>=1.13,B3<2.23),8,0))
Answered By - Harun24hr Answer Checked By - Marie Seifert (PHPFixing Admin)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.