BLANK as a Formula result.

S

SFP

Does Excel have a way to produce a cell that it recognizes
as BLANK as a result of a formula?

="" works to clear the display, but it reads FALSE on an
ISBLANK() test. For example...

in cell A1: =IF(TRUE,"",1)
in cell A2: =ISBLANK(A1)
Cell A2 will return FALSE in this example. Is there any
way to change the "" in cell A1 so that cell A2 will return
TRUE?
 
K

kkknie

I can't think of one, but you could use:

=IF(A1="",TRUE,FALSE)

Rather than =ISBLANK(A1)
 

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