how to remove #N/A

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a large spreadhsheet (21k rows) that creates alot of #N/A as designed.
I would like to change the #N/A to zero removing the formula. This is not a
one time deal as I need to re-create the spreadsheet weekly. I do not want
to value out the entire spreadsheet.
 
Select the range to fix (include other cells if you want).

Edit|Goto|special
check formulas and errors
(and uncheck all the other options)

The selection should be just the cells with formulas that evaluate to #n/a's.

Now type 0 and hit ctrl-enter.

======
Another option would be to change the formula that returns the #n/a.

=if(isna(yourformula),0,yourformula)
 
Hi Charlie

Use below formula:
=IF(ISNA(VLOOKUP(A2,$B$2:$B$15,1,0))=TRUE,"0",VLOOKUP(A2,$B$2:$B$15,1,0))
Change your reference cells.
This formula will convert all your #N/A values to Zero

There is one more way of doing:
Ctrl+H
Replace what : #N/A
Replace with : 0
 
Minor point. =TRUE is unneeded:

=IF(ISNA(VLOOKUP(A2,$B$2:$B$15,1,0)),"0",VLOOKUP(A2,$B$2:$B$15,1,0))

- Jon
 

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