Replacing "#DIV/0!"

  • Thread starter Thread starter I. Woo
  • Start date Start date
You're dividing by zero. Counteract that by modifying the
formula you're using. A simple example would be:

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

or trap the error:

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

HTH
Jason
Atlanta, GA
 
Back
Top