If formula with number ranges
Hi
can someone help me with my formula below.
I would like the out come to be
if the value in row (view265) is 49 or less to =1
if the value in row (view265) is 50 or more but less then 200 =2
if the value in row (view265) is 200 =3
=IF(VIEW265 <= "49", 1, IF(VIEW265 >= "50", 2, IF(VIEW265 >= "200", 3,)))
Best Answer
-
Hi @LisaPetersonBW ,
This formula should do the trick:
=IF([VIEW265]@row = 200, 3, IF([VIEW265]@row >= 50, 2, 1))
Sample output:
Hope this helps, but if you've any questions or I haven't got something quite right then just post! 😊
Answers
-
Hi @LisaPetersonBW ,
This formula should do the trick:
=IF([VIEW265]@row = 200, 3, IF([VIEW265]@row >= 50, 2, 1))
Sample output:
Hope this helps, but if you've any questions or I haven't got something quite right then just post! 😊
Help Article Resources
Categories
Check out the Formula Handbook template!