Hello all,
I'm having trouble with my status light formula.
I have the following columns:
Date Due
% Complete
Status (red/yellow/green/gray)
This is my current status formula:
=IF(OR(ISBLANK([% Complete]@row), ISBLANK([Date Due]@row)), "Gray", IF(AND([% Complete]@row < 1, TODAY() > [Date Due]@row), "Red", IF(AND([% Complete]@row > 0, TODAY() < [Date Due]@row), "Yellow", IF([% Complete]@row = 1, "Green", "Gray"))))
This is a logic break down and a chart of what's not working:
Here is a screenshot of my current sheet for a visual:
Any help anyone could give would be so appreciated.
Thanks!