Is there any way I can check whether a cell is empty?

There is a function ISBLANK() but it returns false when there's a formula in a cell even thought the formula doesn't return anything (or an empty string). I would like it to return true when the formula doesn't return anything as well. So cell seems to be empty without any value.

link|improve this question

77% accept rate
feedback

migrated from superuser.com Jul 1 '11 at 16:51

This question came from our site for computer enthusiasts and power users.

2 Answers

up vote 7 down vote accepted

You can check whether a cell is empty or not by using the following formula:

=if(C2="";"The cell is empty";"The cell is not empty")
link|improve this answer
1  
Thanks. This one is simpler than mine. It was obviously too trivial for me to think of it. :) – Robert Koritnik Dec 1 '09 at 13:35
feedback

I can use function

=IF(COUNTBLANK(cell:cell)=1;"Blank cell";"Not blank")

that will be one only of the cell is empty.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.