I am currently using formula
=IF([Status]@row = “Complete”, “Complete”, IF([Due Date]@row < TODAY(), "Past Due", IF(AND([Due Date]@row >= TODAY(), [Due Date]@row < TODAY(+7)), "At Risk", "On Track")))
In an effort to populate the Overdue Status column on my Smartsheet with the status of Complete if the task row is marked as Complete and if not Complete, to call back a result of At Risk for tasks rows with a due date within the next 7 days or a result of Past Due for task rows with a Due date earlier than today.
The above formula is bringing back a result of #Unparseable.
The portion of the formula IF([Due Date]@row < TODAY(), "Past Due", IF(AND([Due Date]@row >= TODAY(), [Due Date]@row < TODAY(+7)), "At Risk", "On Track"))) works perfectly. It breaks when I try to add in the Complete designation.
I need to be able to exclude the Complete tasks from the Overdue Status column.