If Cell is Blank Then Show 0 in Excel (4 Ways)

dataset

We have a dataset with production information of different factories. A unit is considered ready to sell when packaging is done. In the Unit Ready to sell column (column E) we want to show 0 if any cell in the Unit Packaged column (column D) of the same row is blank.

If Cell Is Blank, Then Show 0 in Excel: 4 Ways

Method 1 – IF Function to Show 0 in Blank Cell

=IF(D6="",0,D6)

The formula will show 0 in E6 if D6 is empty. Otherwise, it will show the value of D6 in E6.

IF

excel if blank then 0

Method 2 – ISBLANK Function to Display 0

=IF(ISBLANK(D6),0,D6)

ISBLANK

excel if blank then 0

Method 3 – Replacing a Blank Cell with 0 Using Go to Special

EDITING

GO TO SPECIAL

SELECT BLANK CELLS

excel if blank then 0

Method 4 – Display 0 in Blank Cells from Display Options

OPTION

excel if blank then 0

excel if blank then 0

Download the Practice Workbook

If Cell is Blank Then Show 0 in Excel.xlsx

Related Articles