Hi there, I am able to get all the status to show correctly, except the 'Complete' and 'Past Due', I know its something simple and I am just not thinking of it, help is appreciated!
I am using a 'End Date' and '% Complete'
Formula used on the 3rd date down
=IF(OR([% Complete]@row = 0, ISBLANK([% Complete]@row)), "Not Started", IF(AND([End Date]@row < TODAY(), [% Complete]@row < 100), "Past Due", IF([% Complete]@row = 100, "Complete")))
Formula used on the 4th date down
=IF(ISBLANK([% Complete]@row), "Not Started", IF([% Complete]@row < 1, "In Progress", IF([% Complete]@row = 1, "Complete", IF(AND([End Date]@row < TODAY(), [% Complete]@row > 100, "Past Due")))))