0% found this document useful (0 votes)
102 views4 pages

Returning Zero When A Referenced Cell Is Blank (Microsoft Excel)

excel tips

Uploaded by

rajeevup2004
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
102 views4 pages

Returning Zero When A Referenced Cell Is Blank (Microsoft Excel)

excel tips

Uploaded by

rajeevup2004
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

8/18/2015 Returning Zero when a Referenced Cell is Blank (Microsoft Excel)

ExcelTips (Menu Interface)


Returning Zero when a Referenced Cell is Blank
by Allen Wyatt (last updated November 24, 2012)

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

Set rMonitor = Range("A3")


http://excel.tips.net/T002174_Returning_Zero_when_a_Referenced_Cell_is_Blank.html 1/4
8/18/2015 Returning Zero when a Referenced Cell is Blank (Microsoft Excel)

Set rTarget = Range("B7")

If Not Intersect(Target, rMonitor) Is Nothing Then


rMonitor.Copy rTarget
End If

Set rMonitor = Nothing


Set rTarget = Nothing
End Sub

ExcelTips is your source for cost­effective 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.

Solve Real Business Problems


Master business modeling and Related Tips:
analysis techniques with Excel and Returning the Smallest Non­Zero Value
transform data into bottom­line Determining a Name for a Week Number
results. This hands­on, scenario­ Retrieving the Last Value in a Column
focused guide shows you how to use Counting Non­Blank Cells
the latest Excel tools to integrate data from
multiple tables. Check out Microsoft Excel 2013 Data Analysis and Business Modeling today!

Comments for this tip:


Robert 05 Jun 2015, 05:46
Hi Allen & all that have left tips in the comments,
I just wanted to say thanks for giving clear & practical advice that helped me easily solve my issues with
this type of problem.
Robert
Willy Vanhaelen 25 Apr 2015, 05:44
Here is a one line version of the macro:

Private Sub Worksheet_Change(ByVal Target As Range)


If Not Intersect(Target, [A3]) Is Nothing Then [B7] = [A3]
End Sub
Anika 25 Apr 2015, 02:10
Thank you all, especially Michael Micky Avidan. =A3&"" simple and works beautifully.
Christine 31 Mar 2015, 05:49
Thank you, thank you, thank you. I'm setting up a worksheet that just needs to be filled in and I've been
trying to figure out how to show the cells as blank if no data is in the adjoining cells!! This has worked
perfectly!
tyk 20 Oct 2014, 14:05
Thank you so much!
I've been trying to solve this pesky issue, and this is the only solution that has worked so far for me
Will 11 Sep 2014, 09:08
Hi Micky
Thanks so much for the tip, it works perfectly, even if i remove the 0 from the ops i get a clean cell,
which makes presentations really neat.
Great Tip and Many Thanks
Will
Michael (Micky) Avidan 09 Sep 2014, 10:10
@Will,

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 (2009­2015)
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.

Michael (Micky) Avidan 29 Aug 2014, 13:29


I don't see any problem in using: =A3&""
Michael (Micky) Avidan
“Microsoft® Answers" ­ Wiki author & Forums Moderator
“Microsoft®” MVP – Excel (2009­2015)
ISRAEL
Jessie 28 Aug 2014, 12:24
I have the following formula:
=DATE(YEAR(D52)+E52,MONTH(D52),DAY(D52))

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 00­Jan­00 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 blank­ness, 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.

With these changes, your formula would become:


=IF(COUNT(C40,C43,C46,C49)=0,"",MAX(C40,C43,C46,C49))

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)

Kris McBride 17 Apr 2013, 19:55


The NA() hint helped but what if I dont want it to return #na?. I have a formula in C36 as follows:
=if(and(isblank(C40),isblank(c43),isblank(c49)),"",max(C40,C43,C46,C49)) which returns a blank cell.
I later have a separate tab referencing C36 with the same formula referencing different cells that I want
C36 included in but because the second formula treats C36 like it has a zero in it when in acutality is it
blank the final formula returns the "1/0/1900" date instead of being blank. Obviously I am dealing with
dates and these are details sheets compliling to an overview sheet. Hope you can help.
Jonas 05 Feb 2013, 05:10
I had to use semicolons to get the formular to work.

Leave your own comment:

*Name:
Email:

Notify me about new comments ONLY FOR THIS TIP


Notify me about new comments ANYWHERE ON THIS SITE
Hide my email address

*Text:

*What is 4+5 (To prevent automated submissions and spam.)

Submit Comment Commenting Terms

http://excel.tips.net/T002174_Returning_Zero_when_a_Referenced_Cell_is_Blank.html 4/4

You might also like