Results 1 to 10 of 15

Thread: Multiple Column Combination Lookup And Return All Items And Get Count of Items

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Junior Member
    Join Date
    Jun 2013
    Posts
    25
    Rep Power
    0

    Multiple Column Combination Lookup And Return All Items And Get Count of Items

    Example (2) (1).xlsxCan anyone help please amend your code to provide results as Column E, F, G and H in the attached file.



    Code:

    Code:
    Sub ProcessLookUpValues()
    Dim X As Long, Z As Long, Index As Long
    Dim ArrLookUp As Variant, ArrIn As Variant, ArrOut As Variant, Counts As Variant
    Columns("D:G").ClearContents
    ArrLookUp = Range("C2:C" & Cells(Rows.Count, "C").End(xlUp).Row)
    ReDim Counts(1 To UBound(ArrLookUp), 1 To 1)
    ArrIn = Range("A2:B" & Cells(Rows.Count, "A").End(xlUp).Row)
    ReDim ArrOut(1 To UBound(ArrIn) + UBound(ArrLookUp), 1 To 3)
    For Z = 1 To UBound(ArrLookUp)
    For X = 1 To UBound(ArrIn)
    If UCase(ArrIn(X, 1)) Like "*" & UCase(ArrLookUp(Z, 1)) & "*" Then
    Counts(Z, 1) = Counts(Z, 1) + 1
    Index = Index + 1
    ArrOut(Index, 1) = ArrIn(X, 1)
    ArrOut(Index, 2) = ArrIn(X, 2)
    ArrOut(Index, 3) = ArrLookUp(Z, 1)
    End If
    Next
    Index = Index + 1
    Next
    Range("D1:G1") = Array("Count of Lookup Value", "Result 1", "Result 2", "Result 3 (Lookup Value")
    Range("D2:D" & 1 + UBound(ArrLookUp)) = Counts
    Range("E2:G" & UBound(ArrOut)) = ArrOut
    End Sub
    Last edited by excel_1317; 06-26-2013 at 10:29 AM. Reason: Code tags

Similar Threads

  1. Multiple Value Return Using Lookup
    By excel_1317 in forum Excel Help
    Replies: 1
    Last Post: 06-25-2013, 01:06 PM
  2. Replies: 4
    Last Post: 04-24-2013, 10:04 AM
  3. Lookup and Count Using Pivot Table
    By RobExcel in forum Excel Help
    Replies: 2
    Last Post: 12-21-2012, 11:08 AM
  4. Pivot Table Count No of Items per Category
    By Howardc in forum Excel Help
    Replies: 2
    Last Post: 07-04-2012, 10:49 PM
  5. Lookup Multi-Column For Unique String Combination For Numeric Value Output
    By Excel Fox in forum Excel and VBA Tips and Tricks
    Replies: 0
    Last Post: 07-03-2011, 07:23 PM

Posting Permissions

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