View Single Post
  #4  
Old April 3rd, 2009, 05:21 AM posted to microsoft.public.excel.misc
T. Valko
external usenet poster
 
Posts: 15,759
Default If condition not met get #N/A

If you're using Excel 2007:

=IFERROR(VLOOKUP(A2,Sheet1!$A$2:$M$3000,13,0),"")

This works in any version:

=IF(COUNTIF(Sheet1$A$2:$A$3000,A2),VLOOKUP(A2,Shee t1!$A$2:$M$3000,13,0),"")


--
Biff
Microsoft Excel MVP


"Cefoxtrot" wrote in message
...
Using the VLOOKUP function to merge data from two worksheets:
=vlookup(A2,sheet1!$A$2:$M$3000,13,FALSE)

It works fine, except that when there is no match, I get a #N/A on each as
the result. Is there a way to prevent the '#N/A' from displaying? Or
replace
it blanks?

Thanks!
Cefoxtrot