View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Singh Singh is offline
external usenet poster
 
Posts: 28
Default how to remove #N/A

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.