I can't seem to resolve, would appreciate any help.
I'm looking to find a value between number ranges in a single cell. <=40, >=40 <=60, >=60 <=80, >=100. The for each result return TEXT: <=40 "Low", >=40 <=60 "MEDIUM", >=60 <=80 "HIGH", >=100 "CRITICAL"
current formula that's not working target cell is C3:
=IF(OR(C3<40,), "LOW", IF(OR(C3>=40,C3<=60),"MEDIUM", IF(OR(C3>=60, C3<=80), "HIGH", IF(OR(C3>=80,),"CRITICAL", ""))))
I'm looking to find a value between number ranges in a single cell. <=40, >=40 <=60, >=60 <=80, >=100. The for each result return TEXT: <=40 "Low", >=40 <=60 "MEDIUM", >=60 <=80 "HIGH", >=100 "CRITICAL"
current formula that's not working target cell is C3:
=IF(OR(C3<40,), "LOW", IF(OR(C3>=40,C3<=60),"MEDIUM", IF(OR(C3>=60, C3<=80), "HIGH", IF(OR(C3>=80,),"CRITICAL", ""))))