HI, I'm trying to auto populate a column if a task is past due based on due date and a status column.
This is the formula I've tried but it comes back as UNPARSEABLE. This one I found on the community
=IF(AND([Due Date]@row < TODAY(), Status@row = "Not Started"), "Past Due"),IF(AND([Due Date]@row<TODAY(), Status@row="In Progress"), "Past Due"))
The goal is to have it return Past due if we are past the due date and the status is either not started or in progress. In my status column my options are Not started, in progress, completed, on hold, no action needed. Otherwise I'd be able to just use not complete and the due date....
Thanks for any help!