Hello,
I am using the project status and end date to determine my project health, but I cant seem to figure out what I need to clear up three issues. I would like to return a yellow in the health column when there is no end date and the project status is either not started or in progress.
I would like to return a blank value in the health column when there is no project status and end date.
I would like to return a red value in the health column if the current date is past the end date and there is no project status.
My current formula is:
=IF(AND(Status@row = "In Progress", TODAY() > [End Date]@row), "Red", IF(AND(Status@row = "Not Started", TODAY() > [End Date]@row), "Red", IF(Status@row = "Complete", "Green", "Yellow")))
Thanks in advance!
Sheri