Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try.
=IF(ISNA(<formula)=TRUE,"",<formula) -- If this post helps click Yes --------------- Jacob Skaria "Cefoxtrot" wrote: 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 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
That worked perfectly. Thank you so much!
Cefoxtrot "Jacob Skaria" wrote: Try. =IF(ISNA(<formula)=TRUE,"",<formula) -- If this post helps click Yes --------------- Jacob Skaria "Cefoxtrot" wrote: 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 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Yes, this works too in Excel 2007.
Thanks a lot! Cefoxtrot "T. Valko" wrote: 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 |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You're welcome. Thanks for the feedback!
-- Biff Microsoft Excel MVP "Cefoxtrot" wrote in message ... Yes, this works too in Excel 2007. Thanks a lot! Cefoxtrot "T. Valko" wrote: 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 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
lookup with multiple condition, but one condition to satisfy is en | Excel Worksheet Functions | |||
Combine an OR condition with an AND condition | Excel Discussion (Misc queries) | |||
If condition | Excel Discussion (Misc queries) | |||
Condition 1 overules condition 2? | Excel Worksheet Functions | |||
if condition, do something, do nothing | Excel Discussion (Misc queries) |