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
Check out the Formula Handbook template!