I'm receiving an #UNPARSABLE error for the following formula:
=IF(AND([Completion Status]@row="Completed", [Actual End Date]@row<=TODAY()), "1",
IF(AND([Completion Status]@row="In Progress", [Actual End Date]@row> TODAY()), "2",
IF(AND([Completion Status]@row="Not Started", [Actual End Date]@row> TODAY ()), "3", "4")))
Based on the examples of similar formula, I think this is correct. What am I not seeing?