Returning Zero When A Referenced Cell Is Blank (Microsoft Excel)
Returning Zero When A Referenced Cell Is Blank (Microsoft Excel)
Please Note: This article is written for users of the following Microsoft Excel versions: 97, 2000, 2002,
and 2003. If you are using a later version (Excel 2007 or later), this tip may not work for you. For a
version of this tip written specifically for later versions of Excel, click here: Returning Zero When a
Referenced Cell is Blank.
If you have a formula in a worksheet, and the cell referenced by the formula is blank, then the formula
still returns a zero value. For instance, if you have the formula =A3, then the formula returns the
contents of cell A3, unless cell A3 is blank. In that case, the formula returns a value of zero.
This seems to be related to the idea that it is impossible for a formula to return a blank value, when
"blank" is used synonymously with "empty." You can, however, expand your formula a bit so that it
returns an empty string. Instead of using =A3 as your formula, you would use the following:
=IF(ISBLANK(A3),"",A3)
This formula uses ISBLANK, which returns either True or False, depending on whether the referenced
cell (A3) is blank or not. The IF function then returns an empty string ("") if A3 is blank, or it uses the
value in A3 if A3 is not blank.
Regardless of what the formula returns, you can still use its result in other formulas, and it will work
fine. Even if it returns an empty string, it is still treated by other formulas as if it contained zero. In areas
where treating the cell as if it contained zero might be problematic (such as when you are charting the
results of the formula), then you can modify the formula a bit, as shown here:
=IF(ISBLANK(A3),NA(),A3)
This formula returns the #N/A error if A3 is blank. This error propagates through other formulas that
reference the formula, but the #N/A error is ignored completely when charting.
While the above solutions are satisfactory for most people, some people would really like to see a target
cell be truly blank if the source cell is blank. For instance, you might want cell B7 to be blank if cell A3
is blank. If you put a formula in cell B7 (as already discussed), then cell B7 is not truly blank—it
contains a formula.
If this is your goal—true "blankness"—then you can only achieve it through the use of a macro. The
macro will need to check to see if the source cell was changed. If it was, then whatever is in the source
needs to be copied to the target cell.
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
Dim rMonitor As Range
Dim rTarget As Range
ExcelTips is your source for costeffective Microsoft Excel training. This tip (2174) applies to Microsoft
Excel 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Excel
(Excel 2007 and later) here: Returning Zero When a Referenced Cell is Blank.
http://excel.tips.net/T002174_Returning_Zero_when_a_Referenced_Cell_is_Blank.html 2/4
8/18/2015 Returning Zero when a Referenced Cell is Blank (Microsoft Excel)
Try: =IF(A2="","Oops",NETWORKDAYS.INTL(A1,A2,...
Michael (Micky) Avidan
“Microsoft® Answers" Wiki author & Forums Moderator
“Microsoft®” MVP – Excel (20092015)
ISRAEL
Will 08 Sep 2014, 06:19
Hi There
I am trying to calculate on (Cell A3) the period of time between date 1 (Cell A1) and date 2 (Cell A2)
which so far is a success.
i.e. =NETWORKDAYS.INTL(A1,A2,1,{41640;41733;41736;41764;41785;41876;41998;41999})
where 1 & {data} does not include holidays & weekend on calculation.
What i need is to incorporate the IFBLANK formula so i do not get the weird outcome when there is no
date on Cell A2. Is that the right formula to use in this case? is there another way to do it.
Please help.
I want to have it blank if D52 is empty. Can you please show me what that entire formula would look
like?
Alpesh 10 Jul 2014, 01:06
Thank you so much, very helpful...keep it up.
Jojo 11 Jun 2014, 19:03
Yes I am having weird issue on my tie in workbook that takes a vroom up formula and returns a date
from another sheet. However when the cell is empty it gives me the 00Jan00 output but I want the
summary book to show blank if their is no date yet. So I tried to attach the if is blank formula and I get
circular reference error and no change to output with weird date. Help!
Just Plain Eric 21 Apr 2014, 13:12
Kris, I have a few comments:
First, when testing multiple cells for blankness, you might prefer to use the COUNT function, which
returns the number of cells that are filled.
Second, not sure if you meant to do this or not, but you missed C46 in your ISBLANK tests. This could
cause your MAX function to return zero when you expect it to return blank.
Also, the reason your formula returns "1/0/1900" is because the cell is formatted as a date. If you change
the number formatting to a number format or General, that result will change to a zero, which is how
Excel (and every other SS program I've ever had to work with for that matter) treats a blank cell. If that
formula is just a direct reference to C36, then C36 can't actually be blank, and C36 is probably picking
up a blank from C46 and returning 0 (zero).
mbszameer 30 Apr 2013, 12:29
thank you very much, this site is helpful
http://excel.tips.net/T002174_Returning_Zero_when_a_Referenced_Cell_is_Blank.html 3/4
8/18/2015 Returning Zero when a Referenced Cell is Blank (Microsoft Excel)
*Name:
Email:
*Text:
http://excel.tips.net/T002174_Returning_Zero_when_a_Referenced_Cell_is_Blank.html 4/4