+ Reply to Thread
Results 1 to 3 of 3

Grouping of duplicates in a column.

Hybrid View

  1. #1
    Registered User
    Join Date
    05-10-2012
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    8

    Cool Grouping of duplicates in a column.

    How to group duplicates in a column and simultaneously link to the corresponding text in another column.

    Ex., What I have.
    Column 1 Column 2

    DAN-4153 GBD567
    DAN-5608 GBD567
    DAN-325 GBD1321
    DAN-4178 GBD590
    GBD4730


    What I want.

    DAN-4153
    DAN-5608 GBD567 (in one row)
    DAN-325 GBD1321
    DAN4178 GBD4730
    GBD590
    Attached Files Attached Files

  2. #2
    Forum Expert mrice's Avatar
    Join Date
    06-22-2004
    Location
    Surrey, England
    MS-Off Ver
    Excel 2013
    Posts
    4,967

    Re: Grouping of duplicates in a column.

    Try this macro.

    
    Sub Test()
    For N = Selection.Row + Selection.Rows.Count - 2 To Selection.Row Step -1
        For M = Selection.Column To Selection.Column + Selection.Columns.Count - 1
            If Cells(N, M) = Cells(N + 1, M) Then
                If M = Selection.Column Then
                    Cells(N, M + 1) = Cells(N, M + 1) & Chr$(10) & Cells(N + 1, M + 1)
                    Cells(N + 1, M + 1).ClearContents
                    Rows(N + 1).Delete
                ElseIf M = Selection.Column + 1 Then
                    Cells(N, M - 1) = Cells(N, M - 1) & Chr$(10) & Cells(N + 1, M - 1)
                    Cells(N + 1, M - 1).ClearContents
                    Rows(N + 1).Delete
                End If
            End If
        Next M
    Next N
    End Sub
    The area needs to be selected before the code is run.
    Martin

  3. #3
    Registered User
    Join Date
    05-10-2012
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    8

    Re: Grouping of duplicates in a column.

    Thankyou.. It worked perfectly and I also made the donation

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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