+ Reply to Thread
Results 1 to 12 of 12

VLOOKUP returning multiple answers from table

Hybrid View

  1. #1
    Registered User
    Join Date
    03-16-2012
    Location
    Chico, CA
    MS-Off Ver
    MS Office 2010
    Posts
    19

    VLOOKUP returning multiple answers from table

    I want to creat a list from data pulled from a table. If I use VLOOKUP it will pull the first instance of the matching data, but I need to create a list whenever the lookup value is met.

    Column1 Column2
    Joe Red
    Sally Blue
    Frank Green
    Joe Green
    Bill Blue
    Joe Orange

    If my lookup value = Joe (C7), I want a list of Red, Green, and Orange.

    Currently I'm using: =VLOOKUP($C$7,Table1,2,FALSE) which returns only Red.

    I've read thru several postings and I've seen some array and index formulas, but I can't quite get those to work. Any help is appreciated! Thanks.

  2. #2
    Valued Forum Contributor
    Join Date
    09-10-2012
    Location
    Los Angeles, CA
    MS-Off Ver
    Excel 2010
    Posts
    929

    Re: VLOOKUP returning multiple answers from table

    Have you tried Filters?

  3. #3
    Valued Forum Contributor Harribone's Avatar
    Join Date
    02-24-2013
    Location
    Midlands, UK
    MS-Off Ver
    Excel 2019/365
    Posts
    570

    Re: VLOOKUP returning multiple answers from table

    Attached shows two ways you can do this (besides just using a filter to show results).

    They are colour coded blue for method 1 and green for method two. Anything else (ie. data and lookup value) are used in both.

    Blue Method:
    This finds all results and displays each one in a new table row by row.

    Green Method:
    This finds all results and puts them together in on cell.


    Wasn't sure which way you were after.
    Let me know if you need anything explaining, no point having a solution without the understanding or you won't be able to apply to your own work.

    Hope this helps
    Attached Files Attached Files
    Last edited by Harribone; 04-04-2013 at 03:59 PM.
    Say thanks, click *

  4. #4
    Registered User
    Join Date
    03-16-2012
    Location
    Chico, CA
    MS-Off Ver
    MS Office 2010
    Posts
    19

    Re: VLOOKUP returning multiple answers from table

    Thanks Harribone. My data (table) is on sheet1. The vlookup formula will be on several other sheets (One for each "Name).
    So, my follow up question is in your formula to label the number of times found (in A1). My vlookup values will be on different sheets so I not sure what to use in place of $J$6.
    In other words, is there another way to put the number of times found in column A?
    Thanks again, CW

  5. #5
    Valued Forum Contributor Harribone's Avatar
    Join Date
    02-24-2013
    Location
    Midlands, UK
    MS-Off Ver
    Excel 2019/365
    Posts
    570

    Re: VLOOKUP returning multiple answers from table

    Don't know what you are refering to with J6 as this is an empty cell on my sheet.

    Use the same method on each sheet you have for every name. But you will need to have columns created on the main sheet to do the search for each sheet.

    So for example the 1st method in my worksheet (which is in blue) has one column (A) which checks for matching results and then shows these in a new table.
    If you have 3 sheets with three different searches (i.e 3 different lookup values) you will need to have 3 columns for each one so that you can get three sets of results. Then you create a table on each sheet and tailor the vlookup formula so that it looks at the correct column for the search.

    Same goes for the green solution, creat a new set of formulas for each individual search required.


    If you need more help to get the basic set up can you upload a sample workbook (replace sensitive data with false as long as it is in the same format) and your results typed out so I can see where you want things to be.

  6. #6
    Registered User
    Join Date
    03-16-2012
    Location
    Chico, CA
    MS-Off Ver
    MS Office 2010
    Posts
    19

    Re: VLOOKUP returning multiple answers from table

    Sorry, I might have moved some cells around which is why the J6 no longer made sense.
    I attached a modified version of your worksheet so you can see what I'm trying to do.
    Sheet 1 has data. Sheet "Joe" works fine, but I need to modify the formual on Sheet 1, Col A so it transfers the right info to sheet "Bill".
    I eventually want to have a tab or worksheet for each Name on Sheet 1 and the corresponding Colour transferred to that worksheet.
    Attached Files Attached Files

  7. #7
    Valued Forum Contributor Harribone's Avatar
    Join Date
    02-24-2013
    Location
    Midlands, UK
    MS-Off Ver
    Excel 2019/365
    Posts
    570

    Re: VLOOKUP returning multiple answers from table

    Just needed a new column on sheet1 which performs a new 'search' for the second sheet.
    For every sheet you want with a different search create a new column in sheet1. Note inserting a column messes up the vlookups a bit on the other sheets so these needed modifying.

    If you are going to set up several search columns in sheet1 do this first then set up the vlookups on each sheet after or you could end up leaving yourself more work to do overall.

    I have also named the column headings on Sheet1 to Bill and Joe, when you work more on yours name these with something sensible so you can easily identify which column is which at a later date.
    Attached Files Attached Files

  8. #8
    Registered User
    Join Date
    03-16-2012
    Location
    Chico, CA
    MS-Off Ver
    MS Office 2010
    Posts
    19

    Re: VLOOKUP returning multiple answers from table

    Hi Harribone, Just wanted to say thank you and I appreciate your time, however, I've decided to go with an INDEX function as it fit my needs better. Thanks anyway for your suggestion(s).

  9. #9
    Forum Expert Kevin UK's Avatar
    Join Date
    12-07-2010
    Location
    Radstock, Somerset
    MS-Off Ver
    365
    Posts
    1,922

    Re: VLOOKUP returning multiple answers from table

    Hi Cyclewench

    Use this for your example in post #1 and the data is in A1:B6.
    In D1 & copy down:
    =IFERROR(INDEX($B$1:$B$6,AGGREGATE(15,6,ROW($1:$6)/($A$1:$A$6=$C$7),ROW($A1))),"")

    Adapt it for your other sheets.IE:
    =IFERROR(INDEX(Sheet1!$B$1:$B$6,AGGREGATE(15,6,ROW(Sheet1!$1:$6)/(Sheet1!$A$1:$A$6=$C$7),ROW($A1))),"")
    Regards Kevin


    Merged Cells (They are the work of the devil!!!)

  10. #10
    Registered User
    Join Date
    03-16-2012
    Location
    Chico, CA
    MS-Off Ver
    MS Office 2010
    Posts
    19

    Re: VLOOKUP returning multiple answers from table

    Hi Kevin,
    That worked brilliantly! Thank you so much. One other question: Is it possible to use the worksheet (or tab) name as the lookup value. In other words, in stead of directing the formula to $C$7, is there a way to use the worksheet (or tab) name?
    Really appreciate your help on this, it has been driving me crazy.

  11. #11
    Registered User
    Join Date
    03-16-2012
    Location
    Chico, CA
    MS-Off Ver
    MS Office 2010
    Posts
    19

    Re: VLOOKUP returning multiple answers from table

    After a little research I found a way to put the tab name in the cell I was referencing so that did the trick. I think I'm good to go. Thanks again for your help.

  12. #12
    Forum Expert Kevin UK's Avatar
    Join Date
    12-07-2010
    Location
    Radstock, Somerset
    MS-Off Ver
    365
    Posts
    1,922

    Re: VLOOKUP returning multiple answers from table

    Hi Cyclewench

    Thank you for the feed back.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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