+ Reply to Thread
Results 1 to 4 of 4

Remove rows without Duplicates

Hybrid View

  1. #1
    Registered User
    Join Date
    04-09-2013
    Location
    Singapore
    MS-Off Ver
    Microsoft Office Pro Plus or Excel 2007
    Posts
    76

    Remove rows without Duplicates

    Using Excel 2007

    2 columns: Project Name & Address


    Many rows

    For these rows, some of the address are duplicates.

    I want to remove the rows that don't have duplicate addresses.


    Thank you

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

    Re: Remove rows without Duplicates

    Try this:-
    Sub MG27May07
    Dim Rng         As Range
    Dim Dn          As Range
    Dim n           As Long
    Set Rng = Range(Range("B2"), Range("B" & Rows.Count).End(xlUp))
    For n = Rng.Count + 1 To 1 Step -1
        With Range("B" & n)
            If Application.CountIf(Rng, .Value) = 1 Then .EntireRow.Delete
        End With
    Next n
    End Sub
    Regards Mick

  3. #3
    Registered User
    Join Date
    04-09-2013
    Location
    Singapore
    MS-Off Ver
    Microsoft Office Pro Plus or Excel 2007
    Posts
    76

    Re: Remove rows without Duplicates

    Hi Mick

    The macros work well. How do I learn how to create macros?

    For a start, can you explain the code of this macro?

    Thank you

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

    Re: Remove rows without Duplicates

    You need to buy some Basic books, try looking at top of Page for threads relating to Starting in VBA.
    I have added comments to the code below:_
    Sub MG28May52
    'Use "Dim" statements to set Variables
    Dim Rng         As Range
    Dim Dn          As Range
    Dim n           As Long
    'Set range Variable "Rng" to From "B!" to last Row with data in column "B".
    Set Rng = Range(Range("B2"), Range("B" & Rows.Count).End(xlUp))
    
    'Loop through Rows in column "B", from bottom to top.
        'NB:- If you loop from top to bottom when deleting cells, then
        'the act of deleting cells will alter the loop selection and you wiull miss cells.
    For n = Rng.Count + 1 To 1 Step -1
       
       'Use Worksheet formuls "Countif" to count duplicates
       ' If ans is "1" then delete row
        With Range("B" & n)
           'Use "With" statement to reduce size of code
            If Application.CountIf(Rng, .Value) = 1 Then .EntireRow.Delete
        End With
    Next n
    End Sub
    Regards Mick
    Last edited by MickG; 05-28-2013 at 10:15 AM.

+ 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