+ Reply to Thread
Results 1 to 14 of 14

Put multiple cell into one cell if name match

Hybrid View

  1. #1
    Registered User
    Join Date
    07-25-2015
    Location
    USA
    MS-Off Ver
    MS Office 2010, Google Sheet
    Posts
    37

    Put multiple cell into one cell if name match

    Hello Excel Experts,

    Need help with the following.

    I have a bunch of names with different box numbers. I need to gather all the box number into one cell matching the name. Any help is greatly appreciated.

    Example

    Original List
    Name Box No.
    Pete 1
    David 2
    Jannet 4
    David 2
    Al 1
    Lucy 66
    Al 2
    Al 3
    Lucy 99

    Final List
    Pete 1
    David 2 2
    Jannet 4
    Al 1 2 3
    Lucy 66 99

  2. #2
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Put multiple cell into one cell if name match

    Is this what you want...

    Data Range
    A
    B
    C
    D
    E
    1
    Name
    Box No.
    ------
    Name
    Box No.
    2
    Pete
    1
    Pete
    1
    3
    David
    2
    David
    2 2
    4
    Jannet
    4
    Jannet
    4
    5
    David
    2
    Al
    1 2 3
    6
    Al
    1
    Lucy
    66 99
    7
    Lucy
    66
    8
    Al
    2
    9
    Al
    3
    10
    Lucy
    99
    Biff
    Microsoft MVP Excel
    Keep It Simple Stupid

    Let's Go Pens. We Want The Cup.

  3. #3
    Registered User
    Join Date
    07-25-2015
    Location
    USA
    MS-Off Ver
    MS Office 2010, Google Sheet
    Posts
    37

    Re: Put multiple cell into one cell if name match

    Hi Tony,

    Yes. How do I do that with formula??

  4. #4
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Put multiple cell into one cell if name match

    You would need a VBA function to do that.

    Are you OK with that?

  5. #5
    Registered User
    Join Date
    07-25-2015
    Location
    USA
    MS-Off Ver
    MS Office 2010, Google Sheet
    Posts
    37

    Re: Put multiple cell into one cell if name match

    If it can make it work. I would probly need to adjust the Rows and Columns according to my actual data.

  6. #6
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Put multiple cell into one cell if name match

    Quote Originally Posted by Swaski View Post
    I would probly need to adjust the Rows and Columns according to my actual data.
    What does that mean?

    Does that mean your data is not organized like the example table I posted?

  7. #7
    Registered User
    Join Date
    07-25-2015
    Location
    USA
    MS-Off Ver
    MS Office 2010, Google Sheet
    Posts
    37

    Re: Put multiple cell into one cell if name match

    Im sorry for the confusion. I can make my list exactly like what you've listed.

  8. #8
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Put multiple cell into one cell if name match

    Have you ever used/worked with VBA code before?

  9. #9
    Registered User
    Join Date
    07-25-2015
    Location
    USA
    MS-Off Ver
    MS Office 2010, Google Sheet
    Posts
    37

    Re: Put multiple cell into one cell if name match

    Slightly. I know the basic.

  10. #10
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Put multiple cell into one cell if name match

    Try this...

    With your file open...

    Copy the VBA code at the link below and paste it into a general module.

    https://www.excelforum.com/showthread.php?p=3096647

    Then, assuming this is your data...

    Data Range
    A
    B
    C
    D
    E
    1
    Name
    Box No.
    ------
    Name
    Box No.
    2
    Pete
    1
    Pete
    1
    3
    David
    2
    David
    2 2
    4
    Jannet
    4
    Jannet
    4
    5
    David
    2
    Al
    1 2 3
    6
    Al
    1
    Lucy
    66 99
    7
    Lucy
    66
    8
    Al
    2
    9
    Al
    3
    10
    Lucy
    99


    This array formula** entered in E2 and copied down:

    =concatall(IF(A$2:A$10=D2,B$2:B$10,"")," ")

    ** array formulas need to be entered using the key
    combination of CTRL,SHIFT,ENTER (not just ENTER).
    Hold down both the CTRL key and the SHIFT key
    then hit ENTER.

    You'll have to save the file as a macro enabled file in the *.xlsm format.

  11. #11
    Registered User
    Join Date
    07-25-2015
    Location
    USA
    MS-Off Ver
    MS Office 2010, Google Sheet
    Posts
    37

    Re: Put multiple cell into one cell if name match

    Thank you so much.

    I may have to look into what the macro does, but when I drag down, there's a value error. I see in the formula B$2:Bxxxxx, x are increasing as it goes down. But if I manually edit it so the array are the same, CTRL+SHFT+ENTER resolves it but I have about 1000 entries.

    I'm assuming that what's the macro is for?

+ 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. Insert multiple Images to match with filename in Merge cell and Unmerge cell
    By JoeyscLee in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 09-21-2016, 09:46 AM
  2. Check cell range for closest match of cell value (multiple words)
    By marcus76 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 11-22-2015, 11:23 AM
  3. [SOLVED] multiple cell value to find match in range
    By utmw2016 in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 10-10-2015, 11:13 PM
  4. Returning Multiple Values via Index Match that are < cell and = to another cell
    By covanpatten2 in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 06-21-2015, 10:08 AM
  5. Move value of a cell into another cell if multiple criteria is match in multiple ranges
    By zlinksystems in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 06-07-2015, 06:53 PM
  6. Hide multiple rows below target cell based on a cell value match elsewhere.
    By tapmagoo in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 08-09-2013, 12:37 PM
  7. [SOLVED] Data validation: cell must match another cell based on multiple cells
    By dadrivr in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 06-06-2013, 07:24 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