two columns to power a red flag in another column
If I have an urgency status that is gray (indicating a deal that is either dead, closed, or on pause), coupled with a priority status listed as medium or high, I would like to power an additional column titled "Discrepancy" to show up with a red flag. Thank you!
Best Answer
-
=IF(AND([Urgency Status]@row = "Gray", OR([Priority Status]@row = "Medium", [Priority Status]@row = "High")), 1, 0)
This should work. Basically, when you say "coupled with," I take that as an AND condition. So the above formula should work when an urgency status is gray AND the priority status is either medium or high. The 1 value ensures that the red flag is shown; 0 means otherwise. Let me know if this worked for you and, if so, give me a vote up!
Be sure to write the formula in the Discrepancy column.
Answers
-
=IF(AND([Urgency Status]@row = "Gray", OR([Priority Status]@row = "Medium", [Priority Status]@row = "High")), 1, 0)
This should work. Basically, when you say "coupled with," I take that as an AND condition. So the above formula should work when an urgency status is gray AND the priority status is either medium or high. The 1 value ensures that the red flag is shown; 0 means otherwise. Let me know if this worked for you and, if so, give me a vote up!
Be sure to write the formula in the Discrepancy column.
-
Perfect, thanks Cody!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.5K Get Help
- 402 Global Discussions
- 213 Industry Talk
- 450 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 135 Just for fun
- 56 Community Job Board
- 454 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 296 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!