Forum Discussion
mgaut341
Helper II
1 year agoCounting blank fields based on another column
I am trying to count how many blank cells I have in my 'status' column when my 'appt date/time' field has a value in the cell. I have tried the following formula CALCULATE(COUNT('CCHHS Imaging & Pr...
- 1 year ago
I was not able to get it to work, so I used a subtraction formula from the other result status' to get my correct answer.
techies
Super User
1 year agoHi mgaut341 please try this
Blank Status with Appt =
CALCULATE(
COUNTROWS('Sheet4'),
NOT(ISBLANK('Sheet4'[Appt Date/Time])),
ISBLANK('Sheet4'[Status])
)