Automate Risk Flag
Hi All,
I am struggling with trying to find and create a formula to automate the Risk Flag.
I'd like to use simple logic to provide a flag if any of the ancestor rows have one of the following values
The two columns are Status, with dropdowns, and Risk Level with High, Medium, Low Symbols, and I would like to return a red Flag to the third column if:
Status@row is “Delayed”, or “Not Started” AND/OR Risk Level is Medium or High
Can anyone please recommend the best way to accomplish this?
Thank you!
Answers
-
Try:
=IF(OR(Status@row = “Delayed”, status@row= “Not Started”), 1, IF(OR[risk level]@row="Medium", [risk level]@riw="High"), 1,0))
Mark
I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.
-
Hi Mark,
Thank you for a quick response. It returned Unparsable. I ensured all is spelled correctly and adjusted for the correct spelling of row, but wondering if I should have brackets around the Status Row and should I have spaces before or after the equal sign?
-
I was missing a paren and had a typo in row. Try:
=IF(OR(status@row = “Delayed”, status@row= “Not Started”), 1, IF(OR([risk level]@row="Medium", [risk level]@row="High"), 1,0))
If the column name is a single word you should need brackets around it. Usually spaces don't matter but they make it easier for someone to review the formula.
An unparsable error is usually a spelling mistake, missing paren, missing g comma, etc. Details in link below.
Mark
I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.
-
hmm, all seems spelled correctly, but It still returns unparseable.
I will keep trying but, may look for an alternative to automate.
Thanks for the help.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.3K Get Help
- 423 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 143 Just for fun
- 59 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!