Change Excel #N/A to 0 display

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.
 
D

Dave Peterson

Maybe adjusting your formula:

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

would be the better way to go.
 
Top