NEW! COUNTIF not blank....
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], "")
Answers
-
Hey @Briana
I am not sure if I am understanding this correctly but... the SMD/IME Appointment Date is a column, and the Case Closure Date is a columns and you want a count of where the SMD/IME is not blank, but the Case Closure Date is blank? If so, you can use a Countifs formula like so:
=COUNTIFS([SMD/IME Appointment Date]:[SMD/IME Appointment], NOT(ISBLANK(@cell)), [Case Closure Date]:[Case Closure Date], ISBLANK(@cell))
This formula will count all the cells with a SMD/IME Date, that have a blank Case Closure Date.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.8K Get Help
- 376 Global Discussions
- 207 Industry Talk
- 440 Announcements
- 4.5K Ideas & Feature Requests
- 139 Brandfolder
- 129 Just for fun
- 130 Community Job Board
- 449 Show & Tell
- 30 Member Spotlight
- 1 SmartStories
- 284 Events
- 33 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!