ISBLANK() does not identify blank cell

E

Eric_NY

In Excel 2003....

I have some cells which:
- look blank
- TYPE() = 2
- LEN() = 0

But ISBLANK() is FALSE. I can't figure out why.

Any suggestions?
 
G

Gary''s Student

ISBLANK() will only return TRUE is the cell is empty.

If the cell contains:
=""
ISBLANK() will return FALSE

It probably should have been called ISEMPTY()


In fact if A1 contains:
=""
and you copy A1 and paste/special/values into A2, then
=ISBLANK(A2)
will STILL return FALSE!!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top