Need command line to change "#DIV/0!" into a "0" (zero)

M

Max

One way is to trap for the denominator being blank/containing a zero,
eg: =IF(OR(B1="",B1=0),0,A1/B1)
 
Top