Hey all,
Trying to make a simple task management sheet, using today's date and the task status to define a Red, Yellow, Green or Grey ball.
If end date is today or later, AND status is not complete or cancelled, green
If end date is today -1, AND status is not complete or cancelled, yellow
If end date is today -2 or further in the past, AND status is not complete or cancelled, red
If status is complete or cancelled, grey
I'm assuming I need to combine IF OR AND functions... but, not getting very far. Your help would be amazing!! Here's what I have at the moment....
=IF(OR(AND(Status@row <> "Complete", [End Date]@row = TODAY(), "Yellow")))