Isblank Returns False for Empty Cells Having Formulas

In Excel 2016, a cell with formula which is not yet calculated appears blank. But still ISBLANK returns False.

I am trying to find a way to return True for the cell having formula which is not yet calculated and is actually Blank.

Can someone help me please.

Thanks in Advance!

5

3 Answers

In case anyone else is having trouble with this, I found a solution.

If a formula returns an empty string, you can't use ISBLANK() because the presence of the formula makes the cell not functionally blank, even if it is visually blank.

But, you can use IF() and LEN() to test how many characters are in the cell. LEN() is a function that counts the number of characters present in a cell. A visually blank cell will have no characters to count.

=IF(LEN(A1)=0, "This cell is blank", "This cell contains characters")
1

As per previous comments, ISBLANK will return FALSE even if your formula in cell C1 returns an empty string (""). ISBLANK will return TRUE only when a given cell is "truly" blank, i.e. does not contain any formulas or values.

As an alternative, try the following functions:

=C1="" <- will return TRUE, assuming that formula in C1 returns an empty string ("")

=OR(ISBLANK(C1),C1="") <- both formulas combined; will also work in case you remove your original formula from cell C1

=NOT(ISNUMBER(C1)) <- will return TRUE in case the result of your numeric formula is empty (e.g. =IF(LEN(A1),A1+B1,""))

One more formula that you may find useful:

=ISFORMULA(C1)

Hope it helps.

Use

=IF(A1="",""[VALUE IF TRUE],[VALUE OR A FUNCTION WHEN CONDITION IS FALSE]) 

instead of isblank because sometimes it assumes a zero matrix that is there in cell A1.

Your Answer

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

Chloe Bennett

Chloe Bennett

Culture, Media & Entertainment Columnist

Chloe Bennett explores the intersection of pop culture, streaming entertainment, digital trends, and contemporary lifestyle. Her weekly commentary reaches thousands of culture enthusiasts.

Share this article
Twitter Facebook Pinterest