Hi all. I'm new and trying to tweak a health column formula. We've decided to remove our % Complete column which we'd originally used.
Original Formula:
=IF(AND([Due Date]@row < TODAY(), NOT(ISBLANK([Due Date]@row)), OR([% Complete]@row <> 1, ISBLANK([% Complete]@row))), "Red", IF(AND(NOT(ISBLANK([Due Date]@row)), OR([% Complete]@row = 0, ISBLANK([% Complete]@row))), "Gray", IF(AND(([% Complete]@row < 0.5), [Network Days]@row <= 2, NOT(ISBLANK([Due Date]@row))), "Yellow", IF(NOT(ISBLANK([Due Date]@row)), "Green ", " "))))
I'd like to use a simple logic such as:
Past due date and NOT complete = Red
Not started = Gray
In progress = Green
Blocked = Yellow
Can anyone please recommend a formula that would work?
Thank you!