Get rid of DIV/0 error message

  • Thread starter Thread starter Jeff
  • Start date Start date
Something like this:

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

or more generally:

=IF(ISERROR(your_formula),0,your_formula)

though this would mask all errors.

Hope this helps.

Pete
 
Thank you!
--
Jeff


Pete_UK said:
Something like this:

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

or more generally:

=IF(ISERROR(your_formula),0,your_formula)

though this would mask all errors.

Hope this helps.

Pete
 

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