Column A = Grid Task Status
Column B = SCSM Task Status
pseudo code:
If column A = column B then "No Action Needed"
If Column A in ("On Hold", "Awaiting External Resources", "In Progress", "Implementation", "Testing) AND Column B = "In Progress" then "No Action Needed"
Otherwise "Review Needed"
==============================
So, I have tried:
=IF([column a]@row = [column b]@row, "No Action Needed", IF(OR(AND([column a]@row = "On Hold", [column b]@row = "In Progress"), AND([column a]@row = "Testing", [column b]@row = "In Progress"), AND([column a]@row = "Awaiting External Resources", [column b]@row = "In Progress"), AND([column a]@row = "Implementation", [column b]@row = "In Progress")), "No Action Needed"))
Which gives me an #Invalid Operation with no further information.
Anyone have any thoughts?