What formula can I use that will return a Past Due status based on the following parameters:
- Start Date < TODAY and % Complete = 0
- % Complete > 0 and End Date < TODAY
I am using the following formula for statuses of Not Started, In Progress, and Completed but I can't figure out how to incorporate Past Due...
=IF([% Complete]@row = 0, "Not Started", IF(AND([% Complete]@row >= 0.01, [% Complete]@row < 1), "In Progress", IF([% Complete]@row = 1, "Complete")))