Is there a useful difference between ISBLANK and =""?
Andrew Henderson
In Excel, the ISBLANK function seems to effectively behave the same as a comparator of ="". However, the former requires more than double the amount of characters that the latter does.
Is there any useful difference between ISBLANK and =""? Are there any situations where it would be particularly preferable to use one over the other?
1 Answer
If a formula is in the cell, but there is no text there, then ="" will return true, and =ISBLANK will be false.
To see this, do =CONCATENATE(B1,B2) (where those cells are blank) and test both of those formulas one the cell where you put concatenate.
More simply put (thanks to @Malachi) ISBLANK will tell you if the cell is empty, and ="" will tell you if the display text is empty (note that white-space and invisible characters both count as displayed text).