In excel, how can i get rid of the zero when a formula is used, b.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm trying to find out how to get rid of a zero when a formula is used, but
there has not been any data entered in that row yet. For example, as simple
as copying another cell, you put =b11, if nothing has been entered in b11
yet, it shows a zero, but I dont' want it to show anything...

help!
 
cburgess57 said:
I'm trying to find out how to get rid of a zero when a formula is used, but
there has not been any data entered in that row yet. For example, as simple
as copying another cell, you put =b11, if nothing has been entered in b11
yet, it shows a zero, but I dont' want it to show anything...

help!

Select Tools|Options. Select the Display tab. There's an option called
zerovalues that should be unchecked. Unfortunately, I have the Swedish
version so it's possible my translation isn't correct.

/Fredrik
 
Thank you! That did work, however if the answer to the formula is actually
Zero, then it takes that zero away also...any way around this??? Thanks!
 
Hi

Fredrik's solution hides all zero values in workbook. When you want hide
zeros in specific cells, or on specific conditions, then you have to use my
solution instead.


Arvi Laanemets
 
=IF(B11="","",B11)

Says....if B11 is empty, make this cell look blank, otherwise show the value
from B11.


Gord Dibben Excel MVP
 

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

Back
Top