Beware:
There are also cells which are seemingly blank
, but are not truly empty but containg "" or something that is called NULL
in other languages. As an example, when a formula results in "" or such result is copied to a cell, the formula
ISBLANK(A1)
returns FALSE
. That means the cell is not truly empty.
The way to go there is to use enter code here
COUNTBLANK(A1)
Which finds both truly empty cells and those containing "". See also this very good answer here