I have a sheet that is checking for past due dates.
This formula works to add a check mark when the task is completed on time:
=IF([Task Closed Date]@row <= [Due Date]@row, 1, 0)
But it counts the blank dates in "Task Closed Date". I have tried mimicking other formulas that utilize ISBLANK, but none of them have worked.