I'm trying to count open/active events that have not been Resolved.
Each event is on a separate row with a column called Resolved.
Resolved Cells will either be empty/blank or contain a date & time as alphanumeric free text. Example below shows date on top of time in cell (I forced with ALT Enter after date)
3DEC
0859 ET
The sheet currently has 16 rows… only 2 have no content in Resolved Cell the others are as per above example.
When I use either of these formulas, I get a count of 36, not 2
=COUNTIF(Resolved:Resolved, "")
=COUNTIF([Resolved]:[Resolved], ISBLANK(@cell ))
Is there another way to count empty cells in a column?