I am looking to add date columns that are based on a criteria in another cell. I can use the COUNTIF statement to add the dates but when I place an criteria in place I get an error.
=COUNTIF([Due Date]:[Due Date], <=TODAY())
This works to count my dates that are less then or equal today but I need it also to filter out if the [Complete Date] ISBLANK to determine correct cell count. I tried the below form. but get error out.
=IF(ISBLANK([Complete Date]:[Complete Date]), COUNTIF([Due Date]:[Due Date], <=TODAY()), "0")
Hopefully someone can point me in the right direction.