+ Reply to Thread
Results 1 to 11 of 11

Vlookup multiple Values then Concatenate all values in One cell

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    11-21-2013
    Location
    United States
    MS-Off Ver
    Excel 2013
    Posts
    102

    Vlookup multiple Values then Concatenate all values in One cell

    Hi,

    Can one of the Excel gurus please help me with two formulas for one data set. The data is attached in the spreadsheet: "Product IDs". The data is a set of Master Product IDs (parent) and the Linked to them Products (children). I need to create a relationship between unique parents (Master Product IDs) and their children (Linked Products)

    I need to create two formulas:

    1. From the Data Set table, need to vlookup the unique value in column A (Master Product ID) and return comma delimited (concatenated) corresponding values from column B (Linked Products). So, the result will be as shown in Table 2.

    2. From the Data Set table, need to vlookup the unique (de-duplicated) parent/children relationship in column A (Master Product ID) and return comma delimited (concatenated) corresponding values from column B (Linked Products). There are total 3 parent/children relationships in Table 1. So, the result will be as shown in Table 3.

    I would really appreciate your help. Thank you in advance!
    Attached Files Attached Files

  2. #2
    Registered User
    Join Date
    07-22-2014
    Location
    Riyadh
    MS-Off Ver
    2010
    Posts
    88

    Re: Vlookup multiple Values then Concatenate all values in One cell

    =vlookup(h4,e:f,2,false)

  3. #3
    Forum Contributor
    Join Date
    11-21-2013
    Location
    United States
    MS-Off Ver
    Excel 2013
    Posts
    102

    Re: Vlookup multiple Values then Concatenate all values in One cell

    Hi mohamedJamsheer,

    Thanks for the reply! However, your formula is not what I am looking for.

    I need to create a formula for the output in Table 2 > "Linked Product" Column. The formula would process the data in Table 1 and return comma delimited values for column F in table 2. Table 3 then depicts the data processed from Table 2. You provided me with the vlookup formula for the results in Table 3, but I need the formula for Table 2 - column F.

    Can you help me with it?

    Thanks so much!

  4. #4
    Registered User
    Join Date
    07-22-2014
    Location
    Riyadh
    MS-Off Ver
    2010
    Posts
    88

    Re: Vlookup multiple Values then Concatenate all values in One cell

    you can use below macro program to resolve

    Sub lookup()
    Dim A, b, c As Integer
    A = 4
    b = 4
    c = 1
    Range("F4:F999").Select
    Selection.ClearContents
    Do While Cells(b, 5).Value <> ""
    Do While Cells(A, 1).Value <> ""
    If Cells(b, 5).Value = Cells(A, 1).Value Then
    If c = 1 Then
    Cells(b, 6).Value = Cells(A, 2).Value
    c = c + 1
    GoTo line1:
    End If
    Cells(b, 6).Value = Cells(b, 6).Value & "," & Cells(A, 2).Value
    A = A + 1
    Else
    line1:
    A = A + 1
    End If
    Loop
    b = b + 1
    A = 4
    c = 1
    Loop
    End Sub


    thanks
    Attached Files Attached Files

  5. #5
    Forum Contributor
    Join Date
    11-21-2013
    Location
    United States
    MS-Off Ver
    Excel 2013
    Posts
    102

    Re: Vlookup multiple Values then Concatenate all values in One cell

    Hi mohamedJamsheer,

    Thank you so much for your help!

  6. #6
    Forum Expert Vikas_Gautam's Avatar
    Join Date
    06-04-2013
    Location
    Ludhiana,Punjab, India
    MS-Off Ver
    Excel 2013
    Posts
    1,850

    Thumbs up Re: Vlookup multiple Values then Concatenate all values in One cell

    Got the solution...

    I have used array formula..
    So use ctrl + shift + enter to enter the formula..
    Don't use only enter..


    Thanks to Tigar Avatar for providing that amazing UDF...

    Don't forget to click *
    Attached Files Attached Files

  7. #7
    Forum Contributor
    Join Date
    11-21-2013
    Location
    United States
    MS-Off Ver
    Excel 2013
    Posts
    102

    Re: Vlookup multiple Values then Concatenate all values in One cell

    Hi Vikas_Gautam,

    I really appreciate you taken time to help me with the solution!

    Thank you!

  8. #8
    Registered User
    Join Date
    04-10-2013
    Location
    Bulgaria
    MS-Off Ver
    Excel 2007
    Posts
    1

    Re: Vlookup multiple Values then Concatenate all values in One cell

    Quote Originally Posted by Vikas_Gautam View Post
    Got the solution...

    I have used array formula..
    So use ctrl + shift + enter to enter the formula..
    Don't use only enter..


    Thanks to Tigar Avatar for providing that amazing UDF...

    Don't forget to click *
    This is an amazing UDF which I love and searched for hours. Tiger Avatar has done a magnificent thing. I do encounter a small issue. The UDF works with multiple result columns which is amazing but for every first value of a new column i get a "0" as a result is that first cell is empty. Any ideas to solve it?

    Edit: correction on every new blank match gives the result "0"

    Edit2: I actually managed to find an answer from the original thread where Tiger Avatar gives a solution

    Quote Originally Posted by tigeravatar View Post
    The 0 is there because Excel feeds its best guess at interpreted values of B2:B5. Because B3 is blank, Excel feeds the number 0 instead, and the number 0 has a length of 1. This can be overcome with a minor adjustment:
    =concatall(IF(A2:A5="North",B2:B5&"",""),", ")
    Last edited by shamana; 07-22-2015 at 08:57 AM.

  9. #9
    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
    53,048

    Re: Vlookup multiple Values then Concatenate all values in One cell

    @ mohamedJamsheer, 2 things...

    You should avoid using entire column ranges in VLOOKUP(), it could start slowing things down.

    Your post does not comply with Rule 3 of our Forum RULES. Use code tags around code.

    Posting code between [CODE] [/CODE] tags makes your code much easier to read and copy for testing, it also maintains VBA formatting.

    Highlight your code and click the # icon at the top of your post window. More information about these and other tags can be found here
    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

  10. #10
    Registered User
    Join Date
    07-22-2014
    Location
    Riyadh
    MS-Off Ver
    2010
    Posts
    88

    Re: Vlookup multiple Values then Concatenate all values in One cell

    thsnks FD for your valuable information.....

  11. #11
    Forum Expert Vikas_Gautam's Avatar
    Join Date
    06-04-2013
    Location
    Ludhiana,Punjab, India
    MS-Off Ver
    Excel 2013
    Posts
    1,850

    Re: Vlookup multiple Values then Concatenate all values in One cell

    hello Shamana,

    here is a link where you could find some more codes regarding it.

    Concatenating Rows and Columns


    hope this helps..!!
    Regards,
    Vikas Gautam
    Excel-buzz.blogspot.com

    Excel is not a matter of Experience, its a matter of Application.

    Say Thanks, Click * Add Reputation

+ 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: 6
    Last Post: 06-11-2014, 12:54 AM
  2. [SOLVED] VLookup on a Cell has multiple values
    By hasanpmp in forum Excel Formulas & Functions
    Replies: 17
    Last Post: 05-19-2014, 08:12 AM
  3. Concatenate multiple cell values based on matching adjacent cells
    By mkrzy in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 04-10-2013, 02:40 AM
  4. [SOLVED] Concatenate Values from a Vlookup
    By dkim.ags in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 03-27-2013, 12:19 PM
  5. [SOLVED] vlookup, multiple values, sum values into one cell??
    By Phillips L in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 11-08-2005, 08:35 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