Look at column and match and add this text te
Solved/Closed
Related:
- Look at column and match and add this text te
- Pdf and xps add in 2007 - Download - Other
- How to add @ in laptop - Guide
- Music match jukebox - Download - Audio playback
- How to add songs to sound picker - Guide
- Add messenger to home screen - Guide
1 response
mubashir aziz
Posts
190
Registration date
Sunday April 12, 2009
Status
Member
Last seen
February 16, 2010
166
Jun 8, 2009 at 12:06 AM
Jun 8, 2009 at 12:06 AM
Suppose in your sheet1 you have data of Employee Name & Manager of employee in column A & B
A B
emp Manager
Sally Tom
Mary Julie
Bob Julie
John Tom
Now in your sheet 2 you have only names in Column A
A
emp name
Sally
Mary
Bob
John
Now in cell B2 of sheet2 write this formula and drag it down ...
=INDEX(Sheet1!B:B,(MATCH(Sheet2!A2,Sheet1!A:A,0)))
A B
emp Manager
Sally Tom
Mary Julie
Bob Julie
John Tom
Now in your sheet 2 you have only names in Column A
A
emp name
Sally
Mary
Bob
John
Now in cell B2 of sheet2 write this formula and drag it down ...
=INDEX(Sheet1!B:B,(MATCH(Sheet2!A2,Sheet1!A:A,0)))
Jun 8, 2009 at 02:51 PM
Jul 7, 2009 at 06:33 PM
Jul 7, 2009 at 11:26 PM
Try to use ranges instead of A:A mean
=INDEX(Sheet1!$B$1:$B$100,(MATCH(Sheet2!A2,Sheet1!$A$1:$A$100,0)))
Dec 14, 2009 at 11:26 AM
I need help in comparing 2 columns in different sheet and if the values are same then corresponding value from another column in sheet 2 needs to be inserted in sheet1 different column .
eg :
Sheet 1
A B
12
13
45
34
sheet 2
A B
11 j
78 k
13 l
34 m
67 n
here on comparing 2 sheets , sheet 1 B should give values l & m of sheet 2 corresponding to 13 & 34 ...I tried IF stmt but was not successful .. Cn anyone help me out ??
Jul 26, 2010 at 06:03 AM