Replace "#DIV/0!" with number "0" ?

  • Thread starter Thread starter SteveMAC
  • Start date Start date
S

SteveMAC

Is there a way to replace the error message "#DIV/0!" with
the number "0" so it will have a number value for use in a
second formula?
 
You can add an ISERROR on top of your existing formula.

=IF(ISERROR(your formula),0,(your formula))
 
That worked perfect, Thanks!!!
-----Original Message-----
You can add an ISERROR on top of your existing formula.

=IF(ISERROR(your formula),0,(your formula))

.
 
Note that this will mask ALL errors (e.g., #VALUE!,#REF!,#NUM!,#N/A),
not just #DIV/0. Targeting specific errors usually results in a more
reliable model.
 
True
-----Original Message-----
Note that this will mask ALL errors (e.g., #VALUE!,#REF!,#NUM!,#N/A),
not just #DIV/0. Targeting specific errors usually results in a more
reliable model.




.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

SUM ... Numbers, Nulls "", & Div/0 5
Div / 0 5
Div 0 help 1
#DIV/0! error 1
How do I replace the #DIV/0! with blanks in the cells? 4
Another DIV/0 Error 2
#DIV/0 error 2
#DIV/0! error 4

Back
Top