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
- 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!