+ Reply to Thread
Results 1 to 5 of 5

3 criteria vlookup

  1. #1
    Registered User
    Join Date
    07-24-2012
    Location
    burlington WA
    MS-Off Ver
    Excel 2010
    Posts
    54

    3 criteria vlookup

    Ive attached a workbook.
    This is what Im looking for:
    Write to column F on first sheet. If column H says Fibrex then match column I on sheet one with column B on sheet 2. once it has found the right row, lookup what is in column L of sheet two. if no Fibrex then leave blank.

    Basically matching diameters then retrieving the info in column L.
    TEST.xlsx

    Thank you

  2. #2
    Registered User
    Join Date
    07-24-2012
    Location
    burlington WA
    MS-Off Ver
    Excel 2010
    Posts
    54

    Re: 3 criteria vlookup

    Are my instructions unclear? Any feedback would be appreciated

  3. #3
    Registered User
    Join Date
    12-09-2009
    Location
    Denver, NC
    MS-Off Ver
    2007
    Posts
    35

    Re: 3 criteria vlookup

    =IF(H3="FIBREX",VLOOKUP(I3,Sheet2!B:L,11,0),"")

    Try this...I think if I understand what you are looking for.

  4. #4
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,939

    Re: 3 criteria vlookup

    in I3, copied down, use this...

    =IF(H3="Fibrex",IFERROR(VLOOKUP(I3,Sheet2!$B$1:$L$13,11,FALSE),""),"")

    your original formula was looking in another file (on a network, from the looks of it?)...
    =IF(H3="fibrex",VLOOKUP(I3,'N:\Jobs\4230 - Oxy - Iris - Mustang Eng\07. Reference Files\[4230 Master Parts AB.xlsx]Master Parts List'!$D$176:$N$188,11,0),"")
    if you need to reference that file instead of your table on sheet2, use...
    =IF(H3="fibrex",iferror(VLOOKUP(I3,'N:\Jobs\4230 - Oxy - Iris - Mustang Eng\07. Reference Files\[4230 Master Parts AB.xlsx]Master Parts List'!$D$176:$N$188,11,0),""),"")
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  5. #5
    Registered User
    Join Date
    07-24-2012
    Location
    burlington WA
    MS-Off Ver
    Excel 2010
    Posts
    54

    Re: 3 criteria vlookup

    Thanks FDibben. forgot about the iferror(..

+ 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