IF (AND) formula help
I can't figure out what I am doing incorrectly with this one...It is coming back #UNPARSEABLE
=IF([Column2]2 <= 49.9,) 1, IF(AND([Column2]2 <100, [Column2]2, >49.9), 0.9, IF(AND([Column2]2 < 150, [Column2]2 >99.9), 0.8, IF(AND([Column2]2 >149.9, [Column2]2 <=199.9), 0.7, IF([Column2]2 >200), 0.6)))
For example if Column2 = 138.5 then it should return 0.8
Best Answer
-
You have an extra parentheses in there, but your formula can also be cut down to the below:
=IF([Column2]2 < 50, 1, IF([Column2]2 < 100, 0.9, IF([Column2]2 < 150, 0.8, IF([Column2]2 < 201, 0.7, 0.6))))
Answers
-
You have an extra parentheses in there, but your formula can also be cut down to the below:
=IF([Column2]2 < 50, 1, IF([Column2]2 < 100, 0.9, IF([Column2]2 < 150, 0.8, IF([Column2]2 < 201, 0.7, 0.6))))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63K Get Help
- 380 Global Discussions
- 212 Industry Talk
- 442 Announcements
- 4.6K Ideas & Feature Requests
- 140 Brandfolder
- 129 Just for fun
- 130 Community Job Board
- 449 Show & Tell
- 30 Member Spotlight
- 1 SmartStories
- 305 Events
- 34 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!