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
- Smartsheet Customer Resources
- 62.4K Get Help
- 364 Global Discussions
- 200 Industry Talk
- 429 Announcements
- 4.4K Ideas & Feature Requests
- 137 Brandfolder
- 129 Just for fun
- 128 Community Job Board
- 446 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 284 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!