I need to return an empty cell from an Excel formula, but it appears that Excel treats an empty string or a reference to an empty cell differently than a true empty cell. So essentially I need something like

=IF(some_condition,EMPTY(),some_value)

I tried to do things such as

=IF(some_condition,"",some_value)

and

=IF(some_condition,,some_value)

and assuming B1 is an empty cell

=IF(some_condition,B1,some_value)

but none of these appear to be true empty cells, I'm guessing because they are the result of a formula. Is there any way to populate a cell if and only if some condition is met and otherwise keep the cell truly empty?

EDIT: as recommended I tried to return NA(), but for my purposes this did not work either. Is there a way to do this with VB?

EDIT: I am building a worksheet which pulls in data from other worksheets that is formatted to the very specific demands of an application which imports the data into a database. I do not have access to change the implementation of this application, and it fails if the value is "" instead of actually empty.

link|improve this question

3  
Can you explain why the cell needs to be blank? Depending on what "blankness" gets you, there may be a workaround. – Boofus McGoofus Jul 13 '09 at 15:10
2  
The cell contains the formula, doesn't it? How can it be empty or blank then? – Sinan Ünür Jul 13 '09 at 18:10
2  
I have a similar problem, I am drawing a graph and do not want to show the value 0 for blank items on the graph. If the records are empty cells it omits them from the graph but any of the methods listed in the "Answers" below results in 0's being shown on the graph. :( – Cobusve Apr 29 '11 at 15:46
feedback

15 Answers

up vote 8 down vote accepted

You're going to have to use VB, then. You'll iterate over the cells in your range, test the condition, and delete the contents if they match. Something like:

For Each cell in SomeRange
  if (cell.value = SomeTest) then cell.clearcontents

end
link|improve this answer
3  
I would add to this: if you always have a particular range of cells you want to clear out the blank cells for, you could give that range a name, then modify Boofus' formula by changing SomeRange to Range("MyRange"). To set a name for your cells, select the cells, click Define Name on the Formulas tab of the ribbon, and enter "MyRange" in the Name field. (And of course you could replace MyRange with anything you want.) – DanM Jul 14 '09 at 1:47
I wound up using a slight modification to this solution. I then set it to be run before the file is saved and everything works wonderfully. – Bryan Ward Jul 14 '09 at 11:37
feedback

Excel does not have any way to do this.

The result of a formula in a cell in Excel must be a number, text, logical (boolean) or error. There is no formula cell value type of "empty" or "blank".

One practice that I have seen followed is to use NA() and ISNA(), but that may or may not really solve your issue since there is a big differrence in the way NA() is treated by other functions (SUM(NA()) is #N/A while SUM(A1) is 0 if A1 is empty).

link|improve this answer
2  
The NA() method works 100% for graphs that are set to show empty cells as gaps, this will likely not work for your case where you are exporting to an application which needs the cell to be blank as it contains a formula ... – Cobusve Apr 29 '11 at 15:53
There is no perfect solution. NA() is one good option. Another is the empty string of (depending) '' or "" – Jason May 13 '11 at 11:28
feedback

look at the solution here:

it seems that somebody in Microsoft realized the problem and built a workaround solution within Excel.

link|improve this answer
This worked for me. It is a relatively easy manual method for doing the same thing as the accepted answer, without VB. – Scott Stafford Aug 9 '11 at 15:36
This worked extremely well for me when manually deleting "blank" cells. – Jonathan Nov 8 '11 at 17:48
feedback

If you are using lookup functions like HLOOKUP and VLOOKUP to bring the data into your worksheet place the function inside brackets and the function will return an empty cell instead of a {0}. For Example,

This will return a zero value if lookup cell is empty:

    =HLOOKUP("Lookup Value",Array,ROW,FALSE)

This will return an empty cell if lookup cell is empty:

    =(HLOOKUP("Lookup Value",Array,ROW,FALSE))

I don't know if this works with other functions...I haven't tried. I am using Excel 2007 to achieve this.

Edit

To actually get an IF(A1="", , ) to come back as true there needs to be two lookups in the same cell seperated by an &. The easy way around this is to make the second lookup a cell that is at the end of the row and will always be empty.

link|improve this answer
feedback

This is how I did it for the dataset I was using. It seems convoluted and stupid, but it was the only alternative to learning how to use the VB solution mentioned above.

  1. I did a "copy" of all the data, and pasted the data as "values".
  2. Then I highlighted the pasted data and did a "replace" (Ctrl-H) the empty cells with some letter, I chose q since it wasn't anywhere on my data sheet.
  3. Finally, I did another "replace", and replaced q with nothing.

This three step process turned all of the "empty" cells into "blank" cells". I tried merging steps 2 & 3 by simply replacing the blank cell with a blank cell, but that didn't work--I had to replace the blank cell with some kind of actual text, then replace that text with a blank cell.

link|improve this answer
While this may have worked in your case, I needed a solution which could be applied automatically. Ultimately, I think I used a VB macro to erase things which were determined to be empty. This macro was run right before saving the file. – Bryan Ward Jan 17 '11 at 20:36
feedback

If the goal is to be able to display a cell as empty when it in fact has the value zero, then instead of using a formula that results in a blank or empty cell (since there's no empty() function) instead,

  • where you want a blank cell, return a 0 instead of "" and THEN

  • set the number format for the cells like so, where you will have to come up with what you want for positive and negative numbers (the first two items separated by semi-colons). In my case, the numbers I had were 0, 1, 2... and I wanted 0 to show up empty. (I never did figure out what the text parameter was used for, but it seemed to be required).

    0;0;"";"text"@
    
link|improve this answer
feedback

Using NA() worked for me - I was also trying to display a series in a chart where the zeros are omitted (helpful for showing the minimum point of a series =if(A1=min(A1:A10), A1, NA()) in each cell of the series. Bingo! Thanks for the help, internet !

link|improve this answer
feedback

The answer is positively - you can not use the =IF() function and leave the cell empty. "Looks empty" is not the same as empty. It is a shame two quotation marks back to back do not yield an empty cell without wiping out the formula.

link|improve this answer
feedback

Maybe it helps when you change numberformat into textformat from the cells to which the formulas are referring to.

link|improve this answer
feedback

You can achieve what you want with a space between the speech marks. If the condition is TRUE, it returns a space, which makes the cell appear empty, otherwise it return the FALSE value.

=IF(some_condition," ",some_value)

This worked for me !

link|improve this answer
No, this wouldn't have worked. I needed the cell actually empty, not just looking like it was empty. There is a big difference between empty and " ". – Bryan Ward Aug 30 '10 at 7:24
feedback

Yes, simplest for me was to provide a string that will not occur (e.g. XOXOXOX or some such nonsense) in the original conditional statement (e.g. IF(A1=D1,C1,"XOXOXOX")). This is in my working sheet.

Then I copy and paste special (Values only) to another worksheet.

Finally, just simply find and replace all XOXOXOX with nothing (do not provide a space character in the Replace value box).

Bingo! All the contents spilled over into the right-adjacent cell and beyond. If you have a spreadsheet which is guaranteed to have only one value in the row, you can then choose to set up Portrait by setting columns narrower so as to support this Portrait orientation (and fewer pages of output).

link|improve this answer
feedback

This worked for my purposes: I set the referenced cell that has a formula in it so that it provides "" as a result if it is blank. The next cell that needs to be blank because the cell with the formula is blank can be written similar to this:

Cell with formula is F6 and has returned "" as a result Next cell that needs to return a "" because F6 is blank =IF($F6="","",0)

link|improve this answer
feedback

Try evaluating the cell using LEN. If it contains a formula LEN will return 0. If it contains text it will return greater than 0.

link|improve this answer
feedback

my god some of you have very round about ways to do stuff. I use the same method as this guy

You can achieve what you want with a space between the speech marks. If the condition is TRUE, it returns a space, which makes the cell appear empty, otherwise it return the FALSE value.

=IF(some_condition," ",some_value) This worked for me !

if you have trouble getting to work it might be the way you formatted you cell to standard and it just works if you have trouble getting it in a special format use the TEXT function an simply chose the preferred context. link: http://office.microsoft.com/en-us/excel-help/text-function-HP010062580.aspx

link|improve this answer
feedback
=IF(ISBLANK(A1),"Blank",A1)
link|improve this answer
3  
It seems that Bryan is not trying to test if the cell is empty, but rather make the cell containing formula empty. Which is IMHO not doable by definition - containing formula = not empty. – quosoo Jul 13 '09 at 14:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.