Formula for Red-yellow-green-gray
Hello
I am trying to make the formula work but I can't seem to find what is wrong. I keep getting #unparseable error. Can someone help. My formula is below.
=IF([Amount Health]@row = "Good", "Green"), IF([Amount Health]@row = "Low", "Red"), IF([Amount Health]@row = "Shipping in progress", "Yellow", IF([Amount Health]@row = " " ,"Gray"))
Best Answer
-
=IF([Amount Health]@row = "Good", "Green", IF([Amount Health]@row = "Low", "Red"), IF([Amount Health]@row = "Shipping in progress", "Yellow", IF([Amount Health]@row = " " ,"Gray"))))
The close quote after "green" was ending the if() function, causing it to get confused about what to do with the comma that followed. The above should work.
Answers
-
=IF([Amount Health]@row = "Good", "Green", IF([Amount Health]@row = "Low", "Red"), IF([Amount Health]@row = "Shipping in progress", "Yellow", IF([Amount Health]@row = " " ,"Gray"))))
The close quote after "green" was ending the if() function, causing it to get confused about what to do with the comma that followed. The above should work.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 437 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!