I'm receiving an unparseable error with this formula? What do I need to adjust here?
=IF({VPAL Portfolio Status Range 2} = "CoaP" + {VPAL Portfolio Status Range 1} = "3. Moving Along", "Green", "" ({VPAL Portfolio Status Range 2} = "CoaP" + {VPAL Portfolio Status Range 1} = "2. Needs Monitoring", "Orange", "" ({VPAL Portfolio Status Range 2} = "CoaP" + {VPAL Portfolio Status Range 1} = "1. Needs Attention", "Red", "")))
I have two logical expressions that combine for a value if true, value if false.
Best Answer
-
The format is a bit off for starters, see if this gets the result you need:
=IF(AND({VPAL Portfolio Status Range 2} = "CoaP", {VPAL Portfolio Status Range 1} = "3. Moving Along"), "Green", IF(AND({VPAL Portfolio Status Range 2} = "CoaP", {VPAL Portfolio Status Range 1} = "2. Needs Monitoring"), "Orange", IF(AND({VPAL Portfolio Status Range 2} = "CoaP", {VPAL Portfolio Status Range 1} = "1. Needs Attention"), "Red", ""
Answers
-
The format is a bit off for starters, see if this gets the result you need:
=IF(AND({VPAL Portfolio Status Range 2} = "CoaP", {VPAL Portfolio Status Range 1} = "3. Moving Along"), "Green", IF(AND({VPAL Portfolio Status Range 2} = "CoaP", {VPAL Portfolio Status Range 1} = "2. Needs Monitoring"), "Orange", IF(AND({VPAL Portfolio Status Range 2} = "CoaP", {VPAL Portfolio Status Range 1} = "1. Needs Attention"), "Red", ""
-
Yes, this worked! Thank you!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.8K Get Help
- 406 Global Discussions
- 218 Industry Talk
- 457 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 136 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 297 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!