find text from 1 col in 2nd col & return value from 3rd col

R

Robert

Hello,
I have:
Sheet1 with empoyee numbers on A:A and last names on C:C
Sheet2 with concantinated names (lastname,firstname) on B:B (always with a
comma between if that helps).

I need some kind of lookup/search formula on sheet2 A:A to extract the last
name from sheet2 B:B, then take this extracted last name and match it up on
sheet1 C:C , then return the emplyee # of sheet1 AA from the same row.

Thanks in advance for any help,
Robert
 
S

Shane Devenshire

Hi,

If you names on sheet1 are in ascending sort then:

=LOOKUP(MID(B1,FIND(",",B1)+1,30),Sheet1!C:C,Sheet1!A:A)

if not

=OFFSET(Sheet1!A$1,MATCH(MID(B1,FIND(",",B1)+1,30),Sheet1!C:C,)-1,)

adjust the "," by adding a space after the comma if there is one in your data.
 
R

Robert

This worked, thanks. I added error correction to it:
=IF(ISERROR(INDEX(Technicians!A:A,MATCH(TRIM(LEFT(B36,SEARCH(",",B36)-1)),Technicians!C:C,0))),"",INDEX(Technicians!A:A,MATCH(TRIM(LEFT(B36,SEARCH(",",B36)-1)),Technicians!C:C,0)))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top