G Guest Oct 25, 2004 #1 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?
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 Oct 25, 2004 #4 There's no need for the plus signs in your formula: =IF(ISERROR(A1/A2),0,A1/A2) will work just fine.