Error

  • Thread starter Thread starter courtesio99
  • Start date Start date
Only by considering those conditions within the formula, like these:

=IF(B1=0,0,A1/B1)
=IF(ISERROR(A1/B1),0,A1/B1)
 
You can use this formula. It returns 0 if the value in
cell B15 is error. Otherwise it returns the value in cell
B14,

=IF(ISERROR(B15),0,B14)

Rgds,

Peter B
 
Back
Top