I can get the formula to work in pieces, but not as a whole...
My formula: =IF(Status@row = "Complete", "Green", IF(Status@row = "Not Started", "", IF(Status@row = "In Progress", "Green", IF(Status@row = "On Hold", "Blue", IF(Status@row = "Delayed", "Red", IF([End Date]@row < TODAY(7), "Yellow", IF([End Date]@row < TODAY(), "Red")))))))
What I want:
If Status is Complete - Health is Green
If Status has Not Started - Health is blank
If Status is On Hold - Health is Blue
If Status is At Risk - Health is Yellow
If Status is Delayed - Health is Red
If Status is In Progress (and over 7 days from End Date) - Health is Green
If Status is In Progress and within 7 days of End Date - Health is Yellow
If Status is In Progress and End Date is today or has passed - Health is Red
Thank you in advance!