#DIV/0! Is there a way to show 0 or 0%

M

MickJJ

I have formulaes that sometime return #DIV/0! Is there a way that I can
return a value 0 or 0% instead of the error?
 
M

Myrna Larson

There's no need for the plus signs in your formula:

=IF(ISERROR(A1/A2),0,A1/A2)

will work just fine.
 
Top