Is there a command to return a value of 0 instead of DIV/0 error message? Thanks!!
J Jeff Dec 11, 2008 #1 Is there a command to return a value of 0 instead of DIV/0 error message? Thanks!!
P Pete_UK Dec 11, 2008 #2 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
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
J Jeff Dec 11, 2008 #4 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 Click to expand...
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 Click to expand...