Hello,
I am trying to set up colour codes to track actual completion status against scheduled completion.
- Blank: Not due yet
- Blue: Due today or tomorrow
- Green: Completed, On time
- Red: Overdue, Not completed
- Yellow: Completed, Late
I found a formula on this forum (Thank you!) and tweaked it just a little to fit my needs. It works fine, with the exception that tasks that are due on the day show as "Complete" even though the "Actual Input Date" is empty.
=IF(AND(ISBLANK([Actual Input Date]@row), [Inputs Due]@row > TODAY(2)), " ", IF(AND(ISBLANK([Actual Input Date]@row), [Inputs Due]@row >= TODAY(1)), "Blue", IF(AND(ISBLANK([Actual Input Date]@row), [Inputs Due]@row < TODAY()), "Red", IF([Actual Input Date]@row < [Inputs Due]@row, "Green", IF([Actual Input Date]@row > [Inputs Due]@row, "Yellow")))))
Any suggestions or guidance what is wrong with the formula and what I need to change so I get the desired result?
Thank you!
Felicia