top of page
  • Excel Master

How To Return Zero When a Referenced Cell Is Blank in Excel

To return a zero when a referenced cell is blank in Excel, you can use the IF function in combination with the ISBLANK function. Here are the steps:

  1. Select the cell where you want the result to appear.

  2. Type the following formula: =IF(ISBLANK(reference cell),0,reference cell)

  3. Replace "reference cell" with the cell that you want to check if it's blank. For example, if you want to check if cell A1 is blank, you would replace "reference cell" with "A1".

  4. Press Enter to complete the formula.

The IF function checks if the referenced cell is blank using the ISBLANK function. If the referenced cell is blank, the formula returns a zero. If the referenced cell is not blank, the formula returns the value of the referenced cell.


For example, if cell A1 contains the value "100", and you want to return a zero if it's blank, you would use the formula: =IF(ISBLANK(A1),0,A1). If A1 is blank, the formula will return 0. If A1 contains a value, the formula will return that value.

40 views0 comments

Recent Posts

See All

How to Use the Autofit Column Width Shortcut in Excel

To use the Autofit Column Width shortcut in Excel, follow these steps: Open Microsoft Excel and navigate to the worksheet containing the columns you want to autofit. Select the column or columns that

How to Add Axis Labels in Excel

To add axis labels in Excel, follow these steps: Open Microsoft Excel and open the worksheet containing the chart you want to edit. Click on the chart to select it. This will activate the Chart Tools

bottom of page