Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
hi all,
i have 2 worksheets S1 ------ id, name 1, john 2, cathy S2 ------ id, type 1, email 2, phone Is there a way to add the person's name in the column next to appropriate type of the 2nd spreadsheet, linked by id? Desired result: 1,email,john 2,phone,cathy thanks, rodchar |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How about a simple formula
C2: =INDEX('S1'!B:B,MATCH(A2,'S1'!A:A,0)) -- __________________________________ HTH Bob "rodchar" wrote in message ... hi all, i have 2 worksheets S1 ------ id, name 1, john 2, cathy S2 ------ id, type 1, email 2, phone Is there a way to add the person's name in the column next to appropriate type of the 2nd spreadsheet, linked by id? Desired result: 1,email,john 2,phone,cathy thanks, rodchar |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() rodchar;175644 Wrote: S1 ------ id, name 1, john 2, cathy S2 ------ id, type 1, email 2, phone Desired result: 1,email,john 2,phone,cathy Assume that is row 2 with id 1. In C2, put this formula: =VLOOKUP(A2,Sheet1!$A$2:$B$100,2,FALSE) Copy that down to do the remaining rows. -- JBeaucaire ------------------------------------------------------------------------ JBeaucaire's Profile: http://www.thecodecage.com/forumz/member.php?userid=73 View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=48587 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
thanks for the help,
rod. "rodchar" wrote: hi all, i have 2 worksheets S1 ------ id, name 1, john 2, cathy S2 ------ id, type 1, email 2, phone Is there a way to add the person's name in the column next to appropriate type of the 2nd spreadsheet, linked by id? Desired result: 1,email,john 2,phone,cathy thanks, rodchar |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Matching | Excel Discussion (Misc queries) | |||
Matching identical data using data only once in the matching proce | Excel Discussion (Misc queries) | |||
Help with Matching Text Fields - Then Moving the Matching Cells Side by Side | Excel Discussion (Misc queries) | |||
Matching | Excel Discussion (Misc queries) | |||
Matching data and linking it to the matching cell | Links and Linking in Excel |