+ Reply to Thread
Results 1 to 4 of 4

VLOOKUP where lookup_value is more than 1 colum

  1. #1
    Registered User
    Join Date
    08-08-2007
    Posts
    15

    VLOOKUP where lookup_value is more than 1 colum

    On sheet1:

    A B C
    LastN FirstN EmployeeID

    Smith John =Vlookup(A1,'Sheet2'!A:C,3)
    ..
    ..
    ..


    On sheet2 is the actual list with all the employees with the same format.
    A B C
    LastN FirstN EmployeeID
    ... ..... .....
    ... ..... .....
    ... ..... .....

    The above function works well until it hits two or more employees with the same lastname. Since my lookup_value is pointing only to values on A1.

    Please help.... i want the formula to return my employee ID on Sheet2 base on the match it finds of the combo of LastN+FirstName from Sheet1.

    I hope i explain myself.

    Thanks Gurus...

  2. #2
    Forum Expert ConneXionLost's Avatar
    Join Date
    03-11-2009
    Location
    Victoria, Canada
    MS-Off Ver
    2010
    Posts
    2,952

    Re: VLOOKUP where lookup_value is more than 1 colum

    Hi renatonetmail,

    Here's one way:

    Please Login or Register  to view this content.
    Note the length of the ranges (I used 1 to 10). You'll need to adjust this to cover the length of your employee list on Sheet2. Warning, the SUMPRODUCT function will not accept the entire column reference style of A:A.

    Cheers,
    Would you like to say thanks? Please click the: " Add Reputation" button, on the grey bar below the post.

  3. #3
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: VLOOKUP where lookup_value is more than 1 colum

    Similar idea, but using the more robust INDEX/MATCH functions. In column C if Sheet1:

    =INDEX(Sheet2!$C$1:$C$1000, MATCH(A2 & B2, INDEX(Sheet2!$A$1:$A$1000 & Sheet2!$B$1:$B$1000, 0), 0))
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

  4. #4
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: VLOOKUP where lookup_value is more than 1 colum

    Quote Originally Posted by ConneXionLost View Post
    Warning, the SUMPRODUCT function will not accept the entire column reference style of A:A.
    This is a good point and is certainly true pre XL2007, not that you should ever use large ranges in any array based formula
    (Sumproduct is processed in the same way as a standard CSE Array)

    One other alternative which is very similar to JB's approach - ie set up to handle all data types re: result range (ie non-numeric ID's)

    Please Login or Register  to view this content.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1