I'm trying to build a IF forumual in the health column that will have all the conditions built out below.
I use the conditional formatting as a workaround, the conditional formatting is not the end goal.
Column Names
"Health"
"Planned Finish"
"True % Complete"
"Status"
This is what I've build out so far but I'm not sure if I'm on the right track
=IF(AND(Status@row = "Complete", [True % Complete]@row = "100%", "Blue")), IF(AND(Status@row = "Complete", [True % Complete]@row > "100%", "Red")), IF(Status@row <> 1, IF(TODAY() - [Planned Finish]@row > 0, "Red", IF(TODAY() - [Planned Finish]@row > -14, "Yellow", IF(TODAY() - [Planned Finish]@row < 14 = "Green")))), IF(AND([True % Complete]@row = "", [Planned Finish]@row > 0, "Red"))