I want to count how many columns have a date in the "SMD/IME Appointment Date" row and where the "Case Closure Date" cell in that column is blank:
=COUNTIF(AND(NOT(ISBLANK([SMD / IME Appointment Date]))), ISBLANK([Case Closure Date], ))
Attempt #2:
=COUNTIF(AND(NOT(ISBLANK([SMD / IME Appointment Date]))), ISBLANK([Case Closure Date], true ))
Attempt #3:
=COUNTIF(AND([SMD / IME Appointment Date]), [Case Closure Date], "")
Attempt #4:
=COUNTIF(AND([SMD / IME Appointment Date]), [Case Closure Date], <> "")
Attempt #5
=COUNTIF(AND([SMD / IME Appointment Date]:[SMD / IME Appointment Date]), [Case Closure Date], "")
Formulas Came Back #UNPARSEABLE
These next two came back #INCORRECT ARGUMENT SET......
=COUNTIF(AND([SMD / IME Appointment Date]:[Case Closure Date], ""))
=COUNTIF(AND([SMD / IME Appointment Date]:[SMD / IME Appointment Date]), [Case Closure Date]:[Case Closure Date], "")