Auto Flag a row for Multiple Conditions
Hi,
I need to auto flag a row if any of the dropdown in the RAIDD column is selected. (extra D is for Decision)
=IF(RAIDD@row = "Risk", 1, 0)
This formulae works and flag the row. However, how do I get others added like Assumption, Issue, Dependency, Decision
=IF(RAIDD@row = "Risk", "Dependency","Issue" 1, 0).......This isnt working
Please help
Best Answer
-
You could do a nested IF statement. For example:
=IF(RAIDD@row = "Risk",1,IF(RAIDD@row = "Assumption",1,IF(RAIDD@row = "Issue",1,IF(RAIDD@row = "Dependency",1,IF(RAIDD@row = "Decision",1,0)))))
Alternatively, search for a blank value and finding anything else, assume true. For example:
=IF(RAIDD@row="",0,1)
Answers
-
You could do a nested IF statement. For example:
=IF(RAIDD@row = "Risk",1,IF(RAIDD@row = "Assumption",1,IF(RAIDD@row = "Issue",1,IF(RAIDD@row = "Dependency",1,IF(RAIDD@row = "Decision",1,0)))))
Alternatively, search for a blank value and finding anything else, assume true. For example:
=IF(RAIDD@row="",0,1)
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.1K Get Help
- 444 Global Discussions
- 140 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 83 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 497 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!