Getting rid of '0' in a cell

M

Mac

When referencing an empty cell, like in 'Sheet A'!B3:B6 from Sheet B, instead
of displaying an empty cell as well, I get a 0 in it. How do I get rid of
this strange behaviour? Note: the cell format is General, switching to Text
did not help ...
 
P

Pete_UK

If you are linking directly to another cell, eg A1 in Sheet1, you
could do this:

=IF(Sheet1!A1="","",Sheet1!A1)

Another method is to use Conditional Formatting on the destination
cell(s), such that a white foreground colour is used if the cell
evaluates to 0, thus making the cell appear blank (on a white
background).

Hope this helps.

Pete
 
P

Pete_UK

You're welcome.

The drawback with the first method is that you need to amend all your
formulae, whereas the second method just acts on the result of those
formulae.

Pete
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top