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.
 
Back
Top