Remove error notification X7/M7=0 when one or both cell values are

  • Thread starter Thread starter chipmac1
  • Start date Start date
If m7 is different from 0, then if x7 is 0, it won't cause an error.
(assuming that both cells contain numbers).

=if(m7=0,"",x7/m7)

or if x7 or m7 could contain text
=if(iserror(x7/m7),"",x7/m7)
 
Back
Top