Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a .xls file in which column A and column B are formatted identically,
All entries that are in coumn B are in column A but there are entries in col A that are not are in col B, i.e. col B is a subset of col A. For every entry in column A that exists in col B, I want to place "found" in col C of the same row as A. How can I do this with VLOOKUP |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
In C1: =IF(ISERROR(VLOOKUP(B1,A:A,1,FALSE)),"","FOUND")
and copy down column C. Hope this helps, Hutch "GKW in GA" wrote: I have a .xls file in which column A and column B are formatted identically, All entries that are in coumn B are in column A but there are entries in col A that are not are in col B, i.e. col B is a subset of col A. For every entry in column A that exists in col B, I want to place "found" in col C of the same row as A. How can I do this with VLOOKUP |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=if(isnumber(match(a1,b:b,0)),"Found","not Found")
If you could live with True or false, you could use: =isnumber(match(a1,b:b:,0)) GKW in GA wrote: I have a .xls file in which column A and column B are formatted identically, All entries that are in coumn B are in column A but there are entries in col A that are not are in col B, i.e. col B is a subset of col A. For every entry in column A that exists in col B, I want to place "found" in col C of the same row as A. How can I do this with VLOOKUP -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
VLOOKUP problem | Excel Worksheet Functions | |||
vlookup problem | Excel Worksheet Functions | |||
VLookUP problem | Excel Worksheet Functions | |||
VLookup problem | Excel Worksheet Functions | |||
VLOOKUP problem | Excel Worksheet Functions |