Google Sheets Formulas – Using the ISBLANK() Function

formulasgoogle sheets

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 the cell seems to be empty without any value.

Best Answer

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")