View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Jon Peltier Jon Peltier is offline
external usenet poster
 
Posts: 6,582
Default how to remove #N/A

Minor point. =TRUE is unneeded:

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

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
Peltier Technical Services, Inc. - http://PeltierTech.com
_______


"singh" wrote in message
...
Hi Charlie

Use below formula:
=IF(ISNA(VLOOKUP(A2,$B$2:$B$15,1,0))=TRUE,"0",VLOO KUP(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



"Charlie_Brown" wrote:

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.