#n/a's

B

Bill Wilson

How can I easily get rid of returned cell values of #N/A
without hitting the delete button manually on each cell
when using an VLOOKUP in a spreadsheet.
 
J

John Wilson

Bill,

The best thing to do is reconstruct your VLookups so that you'll never
get the #N/A.

e.g.
=IF(ISNA(yourlookup),"",yourlookup)
as an example in a formula:
=IF(ISNA(VLOOKUP(D1,A1:B4,2,FALSE)),"",VLOOKUP(D1,A1:B4,2,FALSE))

John
 

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

Top