+ Reply to Thread
Results 1 to 4 of 4

deleting duplicate cells

Hybrid View

  1. #1
    Registered User
    Join Date
    08-24-2005
    Location
    Ireland
    MS-Off Ver
    O365
    Posts
    75

    deleting duplicate cells

    hello,

    im looking for a macro that search through an entire worksheet and will delete an entire row if data in the cell in column C is equal to data in the cell in column D.
    can anyone help?

  2. #2
    Forum Moderator davesexcel's Avatar
    Join Date
    02-19-2006
    Location
    Regina
    MS-Off Ver
    MS 365
    Posts
    13,523
    Hi,
    There is a code at this page that you can use for deleting duplicate rows

    http://www.cpearson.com/excel/deleting.htm

  3. #3
    Forum Expert sweep's Avatar
    Join Date
    04-03-2007
    Location
    Great Sankey, Warrington, UK
    MS-Off Ver
    2003 / 2007 / 2010 / 2016 / 365
    Posts
    3,454
    Hi,

    Sub rowdelete()
       Dim theLastRow As Integer
       Dim theRow As Integer
       
       theLastRow = Cells(Rows.Count, "c").End(xlUp).Row
       For theRow = theLastRow To 1 Step -1
          If Cells(theRow, "c").Value = Cells(theRow, "d").Value Then
                         Rows(theRow).Delete
             End If
         
       Next theRow
    End Sub
    Rule 1: Never merge cells
    Rule 2: See rule 1

    "Tomorrow I'm going to be famous. All I need is a tennis racket and a hat".

  4. #4
    Registered User
    Join Date
    08-24-2005
    Location
    Ireland
    MS-Off Ver
    O365
    Posts
    75
    excellent. thanks.

+ 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