vote up 2 vote down star

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 want 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.

flag

2  
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 at 15:10
1  
The cell contains the formula, doesn't it? How can it be empty or blank then? – Sinan Ünür Jul 13 at 18:10

5 Answers

vote up 2 vote down check

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|flag
1  
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.) – DanThMan Jul 14 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 at 11:37
vote up 0 vote down

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|flag
vote up 5 vote down

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|flag
vote up -1 vote down
=IF(ISBLANK(A1),"Blank",A1)
link|flag
2  
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 at 14:09
vote up -1 vote down

Try using the BLANK() worksheet function.

link|flag

Your Answer

Get an OpenID
or

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