Velvet Star Monitor

Standout celebrity highlights with iconic style.

news

Is there a useful difference between ISBLANK and =""?

Writer 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).

4

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy