Error Terms

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

Guest

How can I get an error term, such as #DIV/0!, to display as just a zero? Thanks
 
I really discourage using iserror - it ignores too many "unexpected"
errors (displaying a valid, but incorrect value - hmmm...where have we
heard about *that* lately??).

And since it calls fewer functions, this is actually more efficient:

=IF(yourdenominator=0, 0, yourformula)
 
On the other hand, =iserror() does help if either the numerator or denominator
cells contain text.

And personally, I think returning a 0 when the divisor is 0 is just another way
to hide an error (expected or unexpected).

==
I wasn't trying to sound too argumentative. I understand your point.
 
And just to add, I've found that my co-workers were much more interested in the
"prettiness" of the worksheet than the accuracy. <gd&r>
 

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

REALLY NEED HELP ON THIS ONE. 5
divide by zero 1
Average time 1
Need "Div/0" Average Relief ... 4
#DIV/0! error 1
I want to see blank cell rather to see #DIV/0! 4
#DIV/0! error 6
iserror problem 9

Back
Top