AND formula
I am trying to create a formula that works as:
If close provider issue is checked then green.
If priority is low and days open is greater than 4 then red
If priority is medium and days open is greater than 3 then red
If priority is high and days open is greater than 2 then red
Otherwise yellow
Currently I have the row set at:
If close provider issue is checked then green
If days open is greater or equal to 4 then red
Otherwise yellow
I tried updating it for priority low, but it does not work:
Thank you in advance!
Answers
-
The below should cover what you are looking for.
=IF([Close Provider Issue]@row=1, "Green", IF(OR(AND([Priority]@row="Low",[Days Open]@row>4),AND([Priority]@row="Medium",[Days Open]@row>3),AND([Priority]@row="High",[Days Open]@row>2)),"Red","Yellow"))
-
That worked. Thank you so much!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!