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
 
Back
Top