Return Blank instead of Zero

D

Db1712

I have two cells linked, is there a formatting to return a blank
instead of zero when the cell its linked to is empty
 
G

Guest

Hi, I have the same problem with blanks and ceros in cells. I want to make
calculations from blank cells then I used =If (B2="","",B2-1), the problem is
that when I make a graphic with my new values, cero appears in the graphic.
 
R

RagDyeR

The #N/A error message will allow your graph to *not* show zeroes.

=IF(OR(B1={"",0}),#N/A,B1)


HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================


Hi, I have the same problem with blanks and ceros in cells. I want to make
calculations from blank cells then I used =If (B2="","",B2-1), the problem
is
that when I make a graphic with my new values, cero appears in the graphic.
 
G

Guest

Yes Sir, it works, thanks

RagDyeR said:
The #N/A error message will allow your graph to *not* show zeroes.

=IF(OR(B1={"",0}),#N/A,B1)


HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================


Hi, I have the same problem with blanks and ceros in cells. I want to make
calculations from blank cells then I used =If (B2="","",B2-1), the problem
is
that when I make a graphic with my new values, cero appears in the graphic.
 

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