Need command line to change the results in a cell from #DIV/0 to 0

  • Thread starter Thread starter mulehead
  • Start date Start date
hi
command line???
a formula would work better.
you are dividing some cell by another cell that has a zero value. lets say
the first cell is a1 and the second is b1.
in a1..
=if(b1=0,0,A1/B1)

this way if b1 is zero the math will not take place. if it is not zero, the
formula will calculate.

Regards
FSt1
 
Unfortunately, I am trying to reverse engineer something, so I need a macro
command that will change #DIV/0 to 0 in all cells with #DIV/0, basically I
need to treat the symptom instead of treating the problem. Thanks for your
help.
 
Back
Top