Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I'm not sure whether my query is similar to others, but I hope someone
can point me in the right direction. I have an excel file with two worksheets. On both are a list of branch numbers in the first column. I want excel to match the branch number from the first sheet to the second and import a column of data from the second (column c). Not all branch numbers present in the second sheet appear in the first. Be grateful if someone could give me some simple direction - tried to look at some excel websites and totally confused by them! Thanks. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
One way via INDEX/MATCH
In Sheet1, Branch numbers running in A2 down Place in B2: =IF(ISNA(MATCH(A2,Sheet2!A:A,0)),"",INDEX(Sheet2!C :C,MATCH(A2,Sheet2!A:A,0))) Copy B2 down as far as required. This will return what you seek, ie Sheet2's col C values for the branch numbers in col A which match with those in Sheet2's col A. Unmatched branch numbers, if any, will return blanks: "". -- Max Singapore http://savefile.com/projects/236895 xdemechanik --- "ler01kjh" wrote: I'm not sure whether my query is similar to others, but I hope someone can point me in the right direction. I have an excel file with two worksheets. On both are a list of branch numbers in the first column. I want excel to match the branch number from the first sheet to the second and import a column of data from the second (column c). Not all branch numbers present in the second sheet appear in the first. Be grateful if someone could give me some simple direction - tried to look at some excel websites and totally confused by them! Thanks. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Merging data from mulitple worksheets | Excel Worksheet Functions | |||
Merging data from different worksheets | Excel Discussion (Misc queries) | |||
Merging data in Worksheets !!!! - Help Please!!! | Excel Discussion (Misc queries) | |||
Merging data from Multiple Worksheets | Excel Worksheet Functions | |||
Matching/merging data from two worksheets | Excel Worksheet Functions |