Blanking Zero Values

  • Thread starter Thread starter Jerry
  • Start date Start date
J

Jerry

Is there a way to blank zero values in only a section of a sheet?

TIA
Jerry
 
Look at Conditional Formatting in XL Help. Set the Font color to the
background color when the cell value is 0.
 
You could also wrap your formula in an IF() function that returns null
if your formula result is zero:

=IF(yourformula=0."",yourformula)

Replace yourformula in the above function with the formula (without
the leading =) in the cells you want zeroes blanked in.

=A1+B1
becomes
=IF(A1+B1=0,"",A1+B1)
-Mike



Is there a way to blank zero values in only a section of a sheet?

TIA
Jerry

Mike Argy
Custom Office Solutions
and Windows/UNIX applications

Please post on-topic responses to the newsgroup

To e-mail me, remove nospam from the address in the headers
 

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