+ Reply to Thread
Results 1 to 5 of 5

If there is a duplicate in column A delete that row

Hybrid View

djfscouse If there is a duplicate in... 09-18-2012, 06:20 PM
mike7952 Re: If there is a duplicate... 09-18-2012, 06:28 PM
djfscouse Re: If there is a duplicate... 09-19-2012, 11:59 AM
mike7952 Re: If there is a duplicate... 09-19-2012, 12:15 PM
djfscouse Re: If there is a duplicate... 09-19-2012, 01:04 PM
  1. #1
    Forum Contributor
    Join Date
    07-31-2012
    Location
    Los Angeles, USA
    MS-Off Ver
    2003, 2010, 365
    Posts
    323

    If there is a duplicate in column A delete that row

    Hi,

    Column A is mostly unique characters, but sometimes the characters can repeat up to 7 times in that column. I need a script that will keep just one unique character and its data in that row and delete any rows where it appears again.

    I have tried a few different scripts in the forum that were close to what I wanted but sadly they did not work.

    Thanks for any help.

    David

  2. #2
    Forum Expert mike7952's Avatar
    Join Date
    12-17-2011
    Location
    Florida
    MS-Off Ver
    Excel 2007, Excel 2016
    Posts
    3,551

    Re: If there is a duplicate in column A delete that row

    Try this. Change $A$1:$E$ to your range

    Sub Macro1()
      With ActiveSheet
        .Range("$A$1:$E$" & .Cells(Rows.Count, "a").End(xlUp).Row).RemoveDuplicates Columns:=1, Header:=xlYes
      End With
    End Sub
    Thanks,
    Mike

    If you are satisfied with the solution(s) provided, please mark your thread as Solved.
    Select Thread Tools-> Mark thread as Solved.

  3. #3
    Forum Contributor
    Join Date
    07-31-2012
    Location
    Los Angeles, USA
    MS-Off Ver
    2003, 2010, 365
    Posts
    323

    Re: If there is a duplicate in column A delete that row

    The above works perfectly for 2007, is there a 2003 version?

  4. #4
    Forum Expert mike7952's Avatar
    Join Date
    12-17-2011
    Location
    Florida
    MS-Off Ver
    Excel 2007, Excel 2016
    Posts
    3,551

    Re: If there is a duplicate in column A delete that row

    Yea short and sweet, but only works in 2007 or greater. Try this for 2003

    Sub abc()
    Dim Ptr As Long
    Dim RangeToDelete As Range
    Dim Lastrow As Long
    
    
        Lastrow = Cells(Rows.Count, "a").End(xlUp).Row
        With CreateObject("Scripting.Dictionary")
            .CompareMode = 1
            For Ptr = 2 To Lastrow
                If Not .Exists(Cells(Ptr, "a").Value) Then
                    .Item(Cells(Ptr, "a").Value) = Cells(Ptr, "a").Value
                Else
                    If RangeToDelete Is Nothing Then
                        Set RangeToDelete = Cells(Ptr, "a")
                    Else
                        Set RangeToDelete = Union(RangeToDelete, Cells(Ptr, "a"))
                    End If
                End If
            Next
            a = .items
        End With
        If Not RangeToDelete Is Nothing Then
            RangeToDelete.EntireRow.Delete
        End If
    End Sub

  5. #5
    Forum Contributor
    Join Date
    07-31-2012
    Location
    Los Angeles, USA
    MS-Off Ver
    2003, 2010, 365
    Posts
    323

    Re: If there is a duplicate in column A delete that row

    Perfect, Thanks again Mike!

+ 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