Hello!
I am currently using this formula to visual task health.
=IF(OR(Status@row = "Complete", Status@row = "Done", Status@row = "Approved"), "Green", IF([Due Date]@row <= TODAY(), "Red", IF([Due Date]@row <= TODAY(7), "Yellow", IF([Due Date]@row > TODAY(), "Green"))))
The tasks are nestled under a parent row for a given project. Is there a way to make the parent rows turn red if any of the tasks below are red? Right now they stay green since the overall project is still considered on time, however we want to be flagging a project if any of it's tasks are overdue.
In this example, I would want the project "Magnifica" to be red since some of the child rows are red.
Appreciate any help here!