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
- Customer Resources
- 67.9K Get Help
- 474 Global Discussions
- 207 Use Cases
- 517 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 83 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!