Hi!
I'm trying create a formula that shows the following:
Blue - Status is complete
Green - Estimated completion day it today or in the future
Yellow - Estimated completion date is between 1-7 days past the due date it is yellow
Red - Estimated completion date is 8+ days past due it is Red.
Gray - if there are no dates.
Below is the formula. The blue, green, and yellow work correctly. The red will work between 8-14 days past due but then goes to gray. I need it to stay red and this is where I'm stumped. I've tried changing the IF([Estimated Completion Date]@row >= TODAY(-14), "Red", to TODAY (-300), "red" and instead of giving me the red symbol, it just says "red" on the sheet I need it to work and on the other sheet I troubleshooted on the red symbol appears.
Also, the Health column is not defaulting to Gray.
=IF(Status@row = "Completed", "Blue", IF([Estimated Completion Date]@row >= TODAY(), "Green", IF([Estimated Completion Date]@row >= TODAY(-7), "Yellow", IF([Estimated Completion Date]@row >= TODAY(-14), "Red", "Gray"))))
Thoughts?
Thank you,
Emily