How to Find Out if a Cell is Empty in Excel?
Need Help with IF, ISBLANK and Excel Formulas?
We offer live instructor-led Excel training for teams who need practical help with formulas, logic tests, reporting and everyday spreadsheet tasks.
OK! So you need to check if a cell is empty or not in Microsot Excel. Knowing how to do this can help you determine whether or not you want to see a formula result.
Finding out if a cell is black or not is possible by using the ISBLANK() function. The ISBLANK() function is a pretty handy function in Excel. Now, you will be forgiven for asking how so? Especially as it only returns a TRUE of FALSE value. Well, the real power of ISBLANK() comes when you combine it with an IF function. Try the following:
First, open a blank spreadsheet then type in the following data.

Now click in cell B2 and enter the following formula:
=ISBLANK(A2)
Now Autofill the formula down to cell B5.

Note that ISBLANK() returns (or shows) FALSE, when the cell is not blank, and TRUE when the cell is blank.
Reversing the ISBLANK() using NOT()
The only problem with the ISBLANK() when using with the above example is that you really want the TRUE value returned when there is a course. This would seem to make more logical sense. So, to accomplish this you can use the NOT() function. So using the above example make the following adjustments:
Click in Cell B2 and make the following adjustment to the formula:
=NOT(ISBLANK(A2))
When you now drag down the formula note that the result is a reverse of the ISBLANK() formula. Check out the following:

See how what once was TRUE and what once was false is now FALSE. Now we need to put this to better use. That is instead of the result just being TRUE and FALSE it would be far better for the result to be Yes or No. To accomplish that you'll have to have a look at the IF Function.