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.
Written by Allen Wyatt (last updated January 18, 2020)
This tip applies to Excel 97, 2000, 2002, and 2003
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") 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
Note:
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.
Create Custom Apps with VBA! Discover how to extend the capabilities of Office 2013 (Word, Excel, PowerPoint, Outlook, and Access) with VBA programming, using it for writing macros, automating Office applications, and creating custom applications. Check out Mastering VBA for Office 2013 today!
At the heart of working with Excel is the process of creating formulas that calculate results based on information within ...
Discover MoreUncovering the lowest value in a range is relatively easy; you can just use the MIN worksheet function. Discovering the ...
Discover MoreWhen you subtract two numbers from each other, you have a certain expectation of what Excel should deliver. What if you ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2022-07-21 11:02:23
David
What is the purpose of this behavior? Why do I need a special function to convert "" back to ""? Why in the world would MS automatically assume I am working with numbers? I get that there are two different types of blanks, numeric and textual. But why assume numeric the numeric seems to be the more reasonable for the isBlank function: isBlank(A1,0,A1) would be a much better implementation. MS's crazy standards, i guess.
2020-08-15 14:22:11
Phil
I'm finding that empty cells formatted as Number or General are not returning the digit zero (0), but are returning "blank." If I enter a zero, they return zero, but if there is no entry in the cell, they return "blank." I would really like to fix this because I have formulas that are balking when the blank cells do NOT return zero. Is there is setting somewhere that has created this scenario?
2020-07-15 04:19:53
Peter
Stuart, what you need is a formula that returns a string, specifically "". If that is not a problem, then you can do that with a macro. Something like this - or better.
Function SumDouble(rStart As Range, rEnd As Range) As String
Dim rr As Range, ss As Worksheet
Dim bSum As Boolean, nSum As Double
Dim sStart As String, sEnd As String
sStart = rStart.Parent.Name
sEnd = rEnd.Parent.Name
For Each ss In Sheets
bSum = (ss.Name = sStart) Or bSum
If bSum Then
Set rr = ss.Range(rStart.Address)
If VarType(rr.Value) = vbDouble Then nSum = nSum + Val(rr.Value)
If (ss.Name = sEnd) Then Exit For
End If
Next
SumDouble = nSum
End Function
2020-07-14 11:11:19
Stuart Morris
I am in excel hell right now and need some help....
I am working on a scorecard which has an overview tab and then several other tabs which are the data points for the overview tab (main scorecard) the overview tab pulls data from each tab by month and these formulas are entered for example like this ='tab2'!A1+'tab3'!A1+'tab4'!A1 etc etc
My issue is the cell in the overview page returns a zero until data is entered into the relevant tabs. I do not want the overview page to return a zero as I want to set conditional formatting for the cell to be green if the true value is actually zero.
I have have tried several different formulas such as ifblank or ifvlookup but nothing will return the cell blank but then allow a zero to show should the value in the other tabs be zero.
Any help would be greatly appreciated.... and my head hurts :-)
Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments