I'm struggling with the flag formula even after reading these discussions and downloading the formula tools.
Goal is to:
- Flag if status is not “complete” and due date in the past
- Flag if status is blank and due date is less than or equal to 3 days from today
Current formula that works is below. I've tried adding to it without luck:
=IF(ISBLANK(End@row), "", IF(AND(End@row <= TODAY(), Status@row <> "Complete"), 1))
Columns are standard - start, end, status.