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 agook, create this calculated column to see the field is blank
Status Debug =
IF(
ISBLANK('Sheet4'[Status]),
"True Blank",
"[" & 'Sheet4'[Status] & "] LEN=" & LEN('Sheet4'[Status])
)