Hello!
I am trying to write a formula that is based on status and end date columns that will return an "in progress" or "overdue" status. I need it to contemplate the following:
If the drop down for the status column is one of the following: blank, "not started," "on hold," "blocked," or "in progress"
AND the end date
Based on the formula above, the output should be one of the two below:
is in the past = overdue
is in the future = in progress
As a side note, I want the formula to exclude "completed" and "out of scope" in the status column.
Here are the two formulas I've tried so far, but I can't get them to work:
=IF([Status Update]@row = "In Progress", IF(End@row > TODAY(), "In Progress", "Overdue"))
=IF(AND([Status Update]@row <> "Complete, Out of Scope", End@row < TODAY()), "Overdue", "N/A")
The columns I am working with are:
Status Update - Drop down list
-Values are: Not Started, In Progress, Complete, Out of Scope, Blocked, On Hold
End - Date/Time