I have a set of training records data. Some have required due dates, some do not. I need a formula that set s flag (for items needing attention) if:
- the complete date is blank
- the complete date is > the due date (if there is a due date)
- for this condition, i need it to ignore if the due date is blank
When I use this formula, it works, except it does not handle the blank due dates:
=IF(OR([Complete Date]@row = "", [Due Date]@row < TODAY()), 1, 0))
how should i modify this to accommodate 2.a scenario?