How do I make this formula operate the way I need to. If there isn't a due date or a status, I don't want it to get flagged as at risk yet.
=IF(OR(Status@row = "Completed", [Due Date]@row = " "), 0, IF(AND(Status@row <> "Completed", [Due Date]@row - TODAY() <= 3, [Due Date]@row - TODAY() >= 0), 1, 0))