Excel Tutorial

Excel Tutorial Shortcut Keys in Excel Formatting in Excel Notes in Excel Formats in Excel Cells and Ranges in Excel Excel Function and Formulas Conditional Formatting in Excel Data Validation in Excel Charts in Excel Excel Ribbon Toolbar Basics of Excel Spell Check in Excel Data Analysis in Excel AutoFill in Excel Goal Seek in Excel Solver in Excel Pivots Table in Excel Go-To Special function in Excel Blank cells in Excel Count Cells with Text in Excel Date and Time in Excel-VBA Dependent Drop-down List in Excel Operators in Excel Dependent Combo box in Excel VBA Error Bar in Microsoft Excel Excel Axes Excel File using Password Excel Unique Values Frequency Distribution in Excel Gauge Chart in Excel Histogram in Excel Sum Every Nth Row in Microsoft Excel SumIF Formula in Microsoft Excel Multiplication in Excel Unique Values in Excel Trendline in Excel Excel Themes Copying formula in Excel Check Marks in Excel Calculating the Last Day of the Month in Excel Calculating Age in Excel Insert Row in Excel

Functions

Excel MAX() Function Excel INT() Function Excel MOD() Function Excel ROUND() Function Excel ROUNDUP() Function Excel AVERAGE() Function Excel COUNT() Function Excel COUNTA() Function Excel COUNTBLANK() Function Excel MIN() Function Excel EDATE() Function Excel EOMONTH() Function Excel HOUR() Function Excel MINUTE() Function Excel SECOND() Function Excel TIME() Function Excel WORKDAY() Function Excel WORKDAY.INTL() Function Excel DAYS() Function Excel WEEKNUM() Function Excel WEEKDAY() Function Excel SMALL() Function Excel LARGE() Function Excel LEFT() Function Excel RIGHT() Function Excel MID() Function Excel FIND() Function Excel SEARCH() Function Excel EXACT() Function Excel SUBSTITUTE() Function Excel TEXT() Function Excel VALUE() Function Excel AND() Function Excel OR() Function Excel IFERROR() Function Excel IF() Function Excel Nested IF’s Function Excel IFNA() Function Excel COUNTIFS() Function Excel VLOOKUP() Function Excel HLOOKUP() Function Excel INDEX() Function Excel MATCH() Function Excel OFFSET () Function Averageif Function in Excel

How To

How to import Microsoft Access data into the Microsoft Excel How to use TODAY function in Excel How to Alphabetize in Excel How to remove duplicate values from excel How to lock cells in Excel How to create drop down in excel How to Delete Row in Microsoft Excel How to Highlight Duplicates Words in the Microsoft Excel How to print titles in Excel How to make use of the Wildcard in Excel How to Make Use of the F-Test in Excel How to make use of the Excel Autofit in Excel How to generate random numbers in Excel How to apply Advanced Filter in Excel How to use Index and Match in Excel

Misc

Absolute Value in Excel Adding Column in Excel Converting Units in Excel Count Characters in Excel Custom Sort Order in Excel Decimals in Excel Division in Excel Locate Maximum Values in Excel Nearest Multiple in Excel Paste Options in Excel Quarter Dates in Excel Row Difference in Excel Separate Strings in Excel Reverse List in Excel Array Formula in Excel What if Analysis Data Table in Excel Excel Shortcut Keys What is a spreadsheet in Excel?

Blank cells in Excel

Microsoft Excel is spreadsheet software designed by Microsoft in 1987. It is used to perform arithmetic calculations in various fields like statistical, engineering and financial. Many times, we export data from different platforms to Excel. Sometimes, because of this there occurs formatting issues and even some cells are left blank. Or otherwise as well, while working with Excel is better to check and remove the blank cells.

Now the question arises, how to do it? This tutorial we will learn the various method that will quickly help us to find Blank cells in Excel.

What is a Cell in Excel?

Excel is represented in the form of a grid, and a single or separate grid is called a cell. A cell location in excel is indicated by its name, which is a combination of column name and row number. Usually, the column name comes first, followed by the row number.

Excel Blank cells

In the above spreadsheet, the selected cell is referred to as D6. The column name is D, and the row number is 6.

What is a Blank cell?

A cell which does not contain any alphabet or numeric values is called a blank cell.

Excel Blank cells

The above-indicated cells are blank.

How to check a blank Cell?

1. Combining IF and ISBLANK Function

Using the formula, it is easy to check whether a cell is blank or occupied. Using IF with the ISBLANK function helps to identify the empty cell.

Syntax

ISBLANK (value)

Below given are the steps to check a blank cell by combining IF and ISBLANK function:

  1. Select the cell where you want to display the result.
  2. Type the formula =IF (ISBLANK (cell name),”Blank”, ”Not blank”)
  3. For example, in the below image, the C6 cell is checked by using the formula =IF (ISBLANK (C6), “Blank”, “Not blank”)
  4. The result is displayed as “Not Blank” in the cell E6.
  5. Drag and repeat this formula to check every cell with different cell name.
Excel Blank cells

2. Using ISBLANK Function

The ISBLANK function is another method to check whether the cell is blank or non-blank

Syntax

ISBLANK (value)

Below given are the steps to check a blank cell by using ISBLANK function:

  1. Select the cell where you want to display the result.
  2. In the selected cell, type the formula as =ISBLANK (cell name)
  3. For example, to check the cell B3, type the formula as =ISBLANK (B3) and press Enter
  4. If the cell is blank, the result will be displayed as TRUE, if the cell is non-blank the result will be displayed as False.
  5. Drag and repeat these steps to check the other cell
Excel Blank cells

In the above chart, B3 and D2 are empty cells. Hence the result is true. The rest of the tables are filled with values therefore, the result is False.

3. Using Find Command

Using the Find command, one can check whether the cell is empty or occupied. Following are the steps to check a blank cell by using find command:

  1. Select the desired cell range in the spreadsheet.
  2. Press the shortcut keys Ctrl+F.
  3. A dialog box will appear in the screen as shown below.
  4. In that choose Find All option, and it will display the cell which is blank.
Excel Blank cells

4. Excel Conditioning Format

  • Select the range of cells.
  • In the Style Tab choose Conditional Formatting > Highlight Cell Rules> More Rules.
  • In that choose Format only cells that contain, and select Blank option in Format only with. A preview is shown with the desired colour.
  • Press OK. The empty cells are displayed with the highlighted colour.
Excel Blank cells
  • The result is shown below.
Excel Blank cells

5. CountBlank Function

CountBlank is a statistical function that is used to count the number of empty cells present within a selected range.

Syntax

COUNTBLANK (range)

Following are the steps to check a blank cell by using Countblank function in Excel:

  • Select the cell range in the spreadsheet.
  • Select the particular cell where the result can display.
  • Enter the formula as =COUNTBLANK (cell range)
  • Press Ok. The result will display in the selected cell.
Excel Blank cells
  • As a result, it has returned Zero as an output since there were no blank cell.
Excel Blank cells

6. COUNTIF

The COUNTIF function is a statistical function. It is used to count the number of cells that meet a specified criterion.

Syntax

COUNTIF (range, criteria)

Below given are the steps to check a blank cell by using COUNTIF function:

  • Select the cell where the result can display
  • Type the formula COUNTIF (range, criteria) and Press Enter.
  • The below image shows that the formula is typed in the result column.
Excel Blank cells
  • The number of blank cells is displayed in the result column.
Excel Blank cells

7. SUMPRODUCT Function

The sum product function is used to perform sum calculations. It comprises subtraction, multiplication and division, and it serves as the measure of the selected range or arrays.

Syntax

=SUMPRODUCT (array1,[array2],[array 3],…)
Excel Blank cells
  1. Select the cell where you want to display the output
  2. Type the formula as =SUMPRODUCT (--(cell range=””))>0
  3. The result will be displayed as true as it contains empty cell
Excel Blank cells