Fill Blank Cells with specific value (0 or null)

This post will teach you how to fill all blank cells with specific value, such as: 0 or any other values in excel. How to locate all blank cells and then fill in all the blanks with any specific value. The below will guide you to fill empty cells with different ways in excel 2016 or 2013. How to fill blank cells with VBA code in Excel.

Assuming that you have a list of date in your worksheet and contains hundreds of empty or blank cells, and you want to fill the blank cells with a specific value, such as: 0 or zero. There are different methods to achieve the result. You can do it by manually, but it is not a good idea and it will consume a lot of time. Also you can refer to the below quick ways.

Method 1: Using Go to Special Feature

To fill all blank cells with specific value, you need to select or locate all blank cell in your worksheet firstly, you can use the Go To special Function to solve this problem in Microsoft excel. Let’s do the following:

1# select the range of cells that you want to fill in blanks

fill blank cells with specific value1

2# on the HOME tab, click Find & Select command under Editing group, then select Go To Special… menu from the pop-up menu list. Or just press F5 or Ctrl+G to open the Go To dialog box, then click Special… button.

fill blank cells with specific value2

3# the Go To Special window will appear on the screen.

4# choose Blanks radio button from the Select section. Then click OK button.

fill blank cells with specific value3

5# you will see that all blank cells are highlighted in the selected range.

fill blank cells with specific value4

6# press F2 to enter one specific value, such as: 0 or null in the active cell

fill blank cells with specific value5

7# then press Ctrl + Enter shortcuts, and you will see that all empty cells will be filled with the value that you entered in the step 6.

fill blank cells with specific value6

Method 2: Using Find & Replace Feature

You can also use the Find & Replace feature to fill in blank cells in excel. Let’s refer to the following steps:

1# select the range of cells with blank cells

2# On the HOME tab, click on “Find & Select” command under Editting group.

3# the Find and Replace dialog box will appear on the screen.

4# switch to Replace tab in the dialog, then leave the Find what: box blank and enter 0 or any other value in Replace with: box.

fill blank cells with specific value7

5# click Replace All button. And click on the OK button again. You will find that all blank cells will be filled with the value you entered in the Replace with box.

fill blank cells with specific value8

Method 3: using Excel Macro to Fill Blank cells

If you want to fill in the blank cells quickly with VBA code, then you can do it following:

1# select the range of cells that contains blank cells

2# click on “Visual Basic” command under DEVELOPER Tab.

Get the position of the nth using excel vba1

3# then the “Visual Basic Editor” window will appear.

4# click “Insert” ->”Module” to create a new module

convert column number to letter3

4# paste the below VBA code into the code window. Then clicking “Save” button.

fill empty blank cell with value2

Sub FillEmptyBlankCellWithValue()
    InputValue = InputBox("Type a value that you want to fill blank cell:", "FillEmptyBlankCellWithValue")
    For Each cell In Selection
        If IsEmpty(cell) Then
            cell.Value = InputValue
        End If
    Next
End Sub

5# back to the current worksheet, then run the above excel macro. Click Run button.

fill blank cells with specific value10

6# Enter one value that you want to fill blank cells, such as: type “excelhow.net” text string.

fill empty blank cell with value1

7# Let’s see the last result:

fill blank cells with specific value12

So you can use the above three quick ways to fill blank cells with 0 or any other value in excel. Welcome any comments.

Leave a Reply