I am trying to get this formula to work on my project timeline. But keep getting #UNPARSEABLE.
=IF(OR(Status@row = "Not Started", [Target End Date]@row >= TODAY()), "Green","Yellow",IF(OR(Status@row = "In Progress", [Target End Date]@row >= TODAY()), "Green","Yellow",IF(AND(Status@row = "In Progress", [Target End Date]@row < TODAY(-15)), "Red", IF(AND(Status@row = "Not Started", [Target End Date]@row < TODAY(-15)), "Red",IF(Status@row = "Complete", "Gray"))))))
I would also like to have the overall health of the project rollup based on the tasks below not on the target end date.