Hello,
I have this formula that works great. I would like to add one criteria to it, however. If a new column (not currently referenced here, which contains a "priority status" (different than "status") that is "high", the dot should be red, regardless of any other critera.
=IF(OR(Status@row = "Dead", Status@row = "Closed", Status@row = "On Pause"), "Gray", IF(AND([Next Touchpoint]@row < TODAY(), OR(Status@row <> "Closed", Status@row <> "Dead")), "Red", IF(AND([Next Touchpoint]@row <= TODAY(+3), OR(Status@row <> "Closed", Status@row <> "Dead")), "Yellow", "Green")))
Thank you!