+ Reply to Thread
Results 1 to 6 of 6

How do you remove UNIQUE items from a column and retain DUPLICATES?

Hybrid View

alemery76 How do you remove UNIQUE... 02-21-2013, 10:51 AM
benishiryo Re: How do you remove UNIQUE... 02-21-2013, 10:55 AM
alemery76 Re: How do you remove UNIQUE... 02-21-2013, 11:02 AM
MickG Re: How do you remove UNIQUE... 02-21-2013, 11:35 AM
ChemistB Re: How do you remove UNIQUE... 02-21-2013, 11:34 AM
newdoverman Re: How do you remove UNIQUE... 02-21-2013, 11:37 AM
  1. #1
    Registered User
    Join Date
    02-21-2013
    Location
    Cleveland
    MS-Off Ver
    Excel 2010
    Posts
    2

    Re: How do you remove UNIQUE items from a column and retain DUPLICATES?

    I apologize, I wasn't specific.
    I have 10 columns of data. Only Colum A contains unique and duplicate data. I want to delete, not seperate or extract, the unique data (and the following colums) for each row containing unique data in column A.

  2. #2
    Forum Expert MickG's Avatar
    Join Date
    11-23-2007
    Location
    Banbury,Oxfordshire
    Posts
    2,650

    Re: How do you remove UNIQUE items from a column and retain DUPLICATES?

    Try this:-
    Sub MG21Feb31
    Dim Rng     As Range
    Dim Dn      As Range
    'Change below to "A2" if data starts on row 2.
    Set Rng = Range(Range("A1"), Range("A" & Rows.Count).End(xlUp))
    With CreateObject("scripting.dictionary")
    .CompareMode = vbTextCompare
    For Each Dn In Rng
        If Not .Exists(Dn.Value) Then
            .Add Dn.Value, Dn
        Else
            .Remove (Dn.Value)
        End If
    Next
    Dim k
    For Each k In .Keys
        .Item(k).EntireRow.Delete
    Next k
    End With
    End Sub
    Regards Mick

+ 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