hiding #DIV/0! message

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

Guest

how can I make a #DIV/0! message either dissappear, be blank, or appear as a
0.00 (or some other way of making it not look awful on a big spreadsheet)?
 
=IF(ISERROR(myformula),"",myformula)

or better still, there must be a cell that is dividing into something that
is 0, so test that cell

=IF(A1=0,"",B1/A1)

as an example.

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
You can make use of the ISERROR function!

You formula would look something like this:

If(ISERROR(A2/B2)=TRUE, "", A2/B2)

So, you look to see if a cell value produces an error, if it does, it puts a
BLANK, otherwise, it carries out your calculation.
 
Make the font color the same as the background color (if
the cells do not have a background color, set the font to
white) and then custom format as:

[Black]General

HTH
Jason
Atlanta, GA
 

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

Similar Threads

#div/0 error 2
how to hide #DIV/0! 6
HIDE #div/0 1
Div / 0 5
Conditional Formatting for #DIV/0! 6
if cell in other worksheet meets criteria, then leave blank. 1
#DIV errors 6
#div/0! error 5

Back
Top