Hello everyone,
I know I am close, but looking for some help. I am trying to create a formula to calculate
If start date is less than today, health symbol is Green
If start (maybe should be end date) is within (xx) days, health symbol turns yellow
If start date (maybe should be end date) is greater than today, turns Red
If % of completion is 100%, health symbol turns blue
Examples
=IF([Start Date]@row < TODAY(), "Green", IF(AND([Start Date]@row >= TODAY(), [Start Date]@row < TODAY(+7)), "Yellow", "Red"))
=IF([% Complete]@row, =100, "Blue", IF([Start Date]@row < TODAY(), "Green", IF(AND([Start Date]@row >= TODAY(), [Start Date]@row < TODAY(+7)), "Yellow", "Red")))