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
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.4K Get Help
- 424 Global Discussions
- 221 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 144 Just for fun
- 61 Community Job Board
- 463 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!