Hi,
I am trying to create a IF/AND formula to return a status color based on multiple inputs.
For example:
IF row title "Status" equals "complete" or "cancelled" or "rejected", then column titled "RISK" (the column with the formula) should be blank. IF row titled "Status" equals "in progress", then column "RISK" should be "green".
Here is an the example formula:
=IF(AND(Status@row <> "Complete", [Launch Date]@row < TODAY()), "Red", IF(AND(Status@row = "Complete", [Kickoff Date]@row < TODAY()), "", IF(AND(Status@row = "Cancelled", [Kickoff Date]@row <> TODAY()), "green", IF(AND(Status@row = "Rejected", [Kickoff Date]@row < TODAY()), "", IF(AND(Status@row <> "In Progress", [Kickoff Date]@row < TODAY(+5)), "Yellow", IF(AND(Status@row <> "Complete", [Launch Date]@row < TODAY(+5)), "Yellow", IF(AND(Status@row <> "In Progress", [Kickoff Date]@row < TODAY(+5)), "Yellow", "Green")))))))
This works as expected except if status = "Cancelled" or "Rejected".
Thanks in advance for any insight.