Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have 2 spreadsheets that have one column of data that is the same. I want
to match that data and bring the corresponding data from another column into the first spreadsheet. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One way via INDEX/MATCH ..
Assume data in sheets: A, B, in cols A and B from row2 down with the key col = col A and you want to bring over data into A's col C from B's col B that matches what's in col A In sheet: A, Put in C2: =INDEX(B!B:B,MATCH(A2,B!A:A,0)) Copy down If you want blanks: "" to be returned for any non-matching cases use instead in C2: =IF(ISNA(MATCH(A2,B!A:A,0)),"",INDEX(B!B:B,MATCH(A 2,B!A:A,0))) -- Max Singapore http://savefile.com/projects/236895 xdemechanik --- "Steve T" wrote: I have 2 spreadsheets that have one column of data that is the same. I want to match that data and bring the corresponding data from another column into the first spreadsheet. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How can I move spreadsheets to contain same format and spacing | Excel Discussion (Misc queries) | |||
How to move data from spreadsheets to spreadsheet? | Excel Discussion (Misc queries) | |||
Can i move scanned jpeg text to excel spreadsheets | Excel Worksheet Functions | |||
need funct to match data in 3 seperate spreadsheets column 1 to v. | Excel Discussion (Misc queries) | |||
match two spreadsheets | Excel Worksheet Functions |