+ Reply to Thread
Results 1 to 2 of 2

Can't combine multi-criteria lookup that also displays multiple results in one cell

  1. #1
    Registered User
    Join Date
    09-05-2013
    Location
    Danbury, CT
    MS-Off Ver
    Excel 2010
    Posts
    1

    Can't combine multi-criteria lookup that also displays multiple results in one cell

    Hi there,

    I'm looking for some help on combining formulas to do a multi-criteria lookup (vlookup or index/match) that can display multiple results in one cell.

    So far, I've gotten separate formulas to work - i can do a multi-criteria lookup with only on result shown, and can do a single-criteria lookup with multiple results shown ... but have been trying desperately to figure out how to combine the two.

    -------------------------------------------------
    Here is my data:

    A B C D
    SqFt Volts Type Options
    10 120 Wire Cat-120-140
    10 120 Mat Dog-120-140
    14 120 Wire Cat-120-140
    14 120 Wire Cat-120-210
    15 120 Wire Cat-120-210
    15 120 Mat Dog-120-210
    20 120 Wire Cat-120-210
    20 120 Wire Cat-120-280
    20 120 Mat Dog-120-280

    Lookup Criteria
    C14 = 20 (sq ft)
    C15 = 120 (volt)
    C16 = Wire (type)

    --------------------------------------------------
    Here are my formula's so far:

    Multi-criteria lookup with single result:
    =INDEX($D$2:$D$10,MATCH(1,(C14=$A$2:$A$10)*(C15=$B$2:$B$10)*(C16=$C$2:$C$10),0),1) ... which returns "Cat-120-210" ... but thats only one possible result, as "Cat-120-280" is also a possibility.


    Single-criteria lookup with multiple results in one cell:
    =MULTIVLOOKUP((C14),A2:D10,3) .... which returns "Cat-120-210, Cat-120-280, Dog-120-280" but only against the 20 sqft criteria

    Public Function MultiVLookup(MatchWith As String, TRange As Range, col_index_num As Integer)
    MatchWith = LCase$(MatchWith)
    If (MatchWith = "") Then
    MultiVLookup = ""
    Else
    For Each cell In TRange
    If LCase$(cell.Value) = MatchWith Then
    x = x & cell.Offset(0, col_index_num).Value & ", "
    End If
    Next cell
    If (x = "") Then
    MultiVLookup = ""
    Else
    MultiVLookup = Left(x, Len(x) - 2)
    End If
    End If
    End Function
    -------------------------------------

    Is there any way to combine both formulas?? I've been trying to figure it out for 3 days without luck ... turning to the experts for help

    See my attached spreadsheet.
    Attached Files Attached Files
    Last edited by klk252; 09-06-2013 at 09:40 AM.

  2. #2
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481

    Re: Can't combine multi-criteria lookup that also displays multiple results in one cell

    here is one way using helper cells to build up matching items.
    Attached Files Attached Files
    Cheers
    Andy
    www.andypope.info

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 11
    Last Post: 02-07-2013, 02:22 AM
  2. Lookup multiple & non duplicated results for multiple matching criteria
    By melvil007 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 10-19-2012, 01:22 AM
  3. Replies: 2
    Last Post: 02-03-2012, 12:13 PM
  4. Replies: 2
    Last Post: 02-03-2012, 11:59 AM
  5. multi sheet lookup with multiple results
    By Alec H in forum Excel General
    Replies: 1
    Last Post: 03-10-2006, 04:10 PM

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