Filter by Categories
Select all
Budget
Business Statements
Calendars
Federal Income Tax
Gantt Chart
GST India
Health, Logs and Personal Trackers
Inventory
Investments
Invoice/ Bill
Maintenance
Payroll & HR
Project Reports & Timelines
Purchase Order/Requisition
Quotation
Rental Ledger
Risk Registers
Sales/ Marketing
SWOT Analysis
Timesheet/ Attendance
UAE VAT
UK VAT
Filter by File Types






How to highlight blank cells in Microsoft Excel ?

How to Highlight Blank Cells in Excel

Introduction 

It’s hard to recognize blank cells in large data because a blank cell is just a white cell without any value. In most cases, blank cells represent some sort of gap missing data, or a formula returns an empty string resulting in a blank cell. And that’s why it’s recommended to highlight these cells with a color so that we can recognize them.

You might be wondering: Which is the best method to find and highlight cells that are blank? But here’s the kicker: It depends on you as there is more than one way for this and you can use any of these ways to get your work done. All of these methods are unique.

So today, in this post, we’d like to share with you three different methods which you can use to highlight the blank cell in Microsoft Excel. So let’s get started.

Highlight Blank Cells with Go To Special

If you want to apply color to all the blank cells from a range, go to a special option can be an easy-to-use way. This method is simple: Select all the blank cells and apply cell color. Yes, that’s it. Below are the steps you need to follow to highlight all the blank cells.

  • First of all, select your entire data.

how-to-highlight-blank-cells-with-conditional-formatting-select-data

  • Go to Home Tab  ➤ Find & Select  ➤ Click on “Go To Special”.

select-goto-to-highlight-blank-cells-in-excel

  • From Go To Special window, select “Blank” and click OK. (It will select all the blank cells from the table.)

select-blank-to-highlight-blank-cells-in-excel

  • After that, go to the home tab and apply the color to highlight the cells.

apply-color-to-highlight-blank-cells-in-excel

Note : If you want to use a dynamic method, you apply the conditional method, see the next method.

Conditional Formatting to Highlight Blank Cells

  • First of all, select the data table.

how-to-highlight-blank-cells-with-conditional-formatting-select-data

  • Go to  ➤ Home tab  ➤ Conditional Formatting.

how-to-highlight-blank-cells-with-conditional-formatting-goto-home-tab

  • In conditional formatting options, select “highlight cell rules” and click ”more rules”.

how-to-highlight-blank-cells-with-conditional-formatting-select-more-rules

  • Now, from the rule description select the “Blank” from the drop menu.
    how-to-highlight-blank-cells-with-conditional-formatting-select-blank-from-drop-down
  • After that, click on the “format” button to open the formatting option.

how-to-highlight-blank-cells-with-conditional-formatting-click-format-button

  • From formatting options, select the color you want to use for highlighting.
  • Click OK.

use-red-color-to-highlight-blank-cells-in-excel-1

And, the best part is, if you have blank cells with a formula it will also highlight it and if you have a pivot table instead of a normal table, the steps will be the same.

Note : It’s a one-time setup, you don’t have to apply it again and again. Use a table in your data and conditional formatting will extend when you add new data to the table.

VBA Code to Highlight Blank Cell

For your unconditional love for VBA, we have a macro code to apply color to all the blank cells from a selected range.

Sub ColorBlankCells()

Dim rng As Range

Set rng = Selection

rng.SpecialCells(xlCellTypeBlanks).Interior.Color = vbRed

End Sub

When you run this code it will check each cell from the range and then apply red color if a cell is blank.

Conclusion

So these are the three methods that you can use to highlight blank cells. You can use any of these methods which you think is perfect for you. The best method that we often use for our work is the conditional formatting method.

Content

Macro Codes in Excel

Learn Excel Quickly
Get full list of Excel Macro Codes