Hello - Looking for assistance to resolve #INCORRECT ARGUMENT SET error.
I believe I am overlooking it, because I have been focused on it for too long.
If the due date is in the future, I want "Not Started"
Formula giving error:
=IF([% Completion]@row = 1, "Complete", IF(AND([% Completion]@row < 1, [Due Date]@row < TODAY(0)), "Overdue", IF(AND([% Completion]@row < 1, [Due Date]@row > TODAY(0)), "Not Started"), "In Progress"))
_______________________________________________________________________
The below formula makes everything "In Progress" if not complete or Overdue and I want to add argument for "Not Started"
=IF([% Completion]@row = 1, "Complete", IF(AND([% Completion]@row < 1, [Due Date]@row < TODAY(0)), "Overdue", "In Progress"))
Appreciate another set of eyes to help.