+ Reply to Thread
Results 1 to 4 of 4

Removing Duplicate Rows

Hybrid View

  1. #1
    Registered User
    Join Date
    03-11-2011
    Location
    Sweden
    MS-Off Ver
    Excel 2007
    Posts
    14

    Removing Duplicate Rows

    Hi Everyone

    I have data in following form(also attached in Excel File):

    (5,1)
    (7,1)
    (5,1) Duplicate
    (19,1)
    (7,1) Duplicate
    (33,1)
    (41,1)
    (33,1) Duplicate

    I want to remove duplicate entries from the Data, so that the remaining Data should be:
    (5,1)
    (7,1)
    (19,1)
    (33,1)
    (41,1)

    Can anybody please explain how it should be done?

    Best Regards
    Attached Files Attached Files

  2. #2
    Forum Expert Bob Phillips's Avatar
    Join Date
    09-03-2005
    Location
    Wessex
    MS-Off Ver
    Office 2003, 2010, 2013, 2016, 365
    Posts
    3,284

    Re: Removing Duplicate Rows

    
    Dim lastrow As Long
    Dim i As Long
        
        Application.ScreenUpdating = False
    
        With ActiveSheet
        
            lastrow = .Cells(Rows.Count, "A").End(xlUp).Row
            For i = lastrow To 2 Step -1
            
                If Not IsError(Application.Match(.Cells(i, "A").Value, .Range("A1").Resize(i - 1), 0)) Then
                
                    .Rows(i).Delete
                End If
            Next i
        End With
        
        Application.ScreenUpdating = True

  3. #3
    Registered User
    Join Date
    11-23-2011
    Location
    VietNam
    MS-Off Ver
    Excel 2003
    Posts
    24

    Re: Removing Duplicate Rows

    Quote Originally Posted by virtualized View Post
    Hi Everyone

    I have data in following form(also attached in Excel File):

    (5,1)
    (7,1)
    (5,1) Duplicate
    (19,1)
    (7,1) Duplicate
    (33,1)
    (41,1)
    (33,1) Duplicate

    I want to remove duplicate entries from the Data, so that the remaining Data should be:
    (5,1)
    (7,1)
    (19,1)
    (33,1)
    (41,1)

    Can anybody please explain how it should be done?

    Best Regards
    Column A --> Data -->Remove Duplicate. OK
    If you like code, you try thiscode
    Sub RemoveDuplicate()
    Dim sArray As Variant, RArr(), iRow As Long, i As Long
    With Sheets("Sheet1").Range("a2").CurrentRegion
        .Columns("c").ClearContents
        sArray = .Value
    End With
    ReDim RArr(1 To UBound(sArray), 1 To UBound(sArray, 2))
    With CreateObject("Scripting.Dictionary")
        For iRow = 1 To UBound(sArray, 1)
            If Not .exists(sArray(iRow, 1)) Then
                i = i + 1
                .Item(sArray(iRow, 1)) = i
                RArr(i, 1) = sArray(iRow, 1)
            End If
        Next iRow
    End With

  4. #4
    Registered User
    Join Date
    03-11-2011
    Location
    Sweden
    MS-Off Ver
    Excel 2007
    Posts
    14

    Re: Removing Duplicate Rows

    Hi

    Thanks a lot.

    Best Regards

+ 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