Have a clean worksheet.Originally Posted by phantom1975
Leave A1 empty.
In A2 enter:
=IF(B1,1,"")
Stay away from column B.
In C1 enter & copy down:
=ISBLANK(A1)
You'll get:
TRUE
FALSE
In D1 enter & copy down:
=COUNTBLANK(A1)
You'll get:
1
1
In E1 enter & copy down:
=A1=""
You'll get:
TRUE
TRUE
In F1 enter & copy down:
=LEN(A1)
You'll get:
0
0
In G1 enter & copy down:
You'll get:
0
1
A formula generated "" is often called a blank, nothing, null (string). ISBLANK is the only function (predicate) along with COUNTA that distinguishes between an empty cell and a cell that houses "" as formula result. Note the inconsistency between the BLANK bits in ISBLANK and COUNTBLANK.
I try to speak about empty cells and cells housing formula-generated blanks.
In practice, blank and empty is used to characterize a cell that contains nothing, even if the cell houses "" as formula result.


LinkBack URL
About LinkBacks



Reply With Quote

Bookmarks