Change Excel #N/A to 0 display

  • Thread starter Thread starter PYoung
  • Start date Start date
P

PYoung

I'm looking for a way to change the display of #N/A to 0 (zero) in the
worksheet display on screen. I can do it with Paste Special/Values,
then Find and Replace, but I lose the cell's formula content.
 
Maybe adjusting your formula:

=if(iserror(yourformula),0,yourformula)
or more specific:
=if(isna(yourformula),0,yourformula)

would be the better way to go.
 

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

Back
Top