+ Reply to Thread
Results 1 to 4 of 4

Excel VBA To delete duplicates with oldest date

Hybrid View

  1. #1
    Registered User
    Join Date
    09-03-2014
    Location
    South Africa
    MS-Off Ver
    MS Office 2010
    Posts
    40

    Excel VBA To delete duplicates with oldest date

    Good day,

    I currently have a basic VBA to delete rows based om duplicate values in Column B.

    I have dates in Column O. I want to delete the duplicate with the oldest date.

    I am currently using this VBA:

    Private Sub CommandButton2_Click()
    LastRow = ActiveSheet.UsedRange.Row - 1 + _
        ActiveSheet.UsedRange.Rows.Count
    
    For RowNum = 2 To LastRow
        If (Range("B" & RowNum) = Range("B" & RowNum + 1)) Then
        Range("B" & RowNum).EntireRow.Clear
        End If
    Next RowNum
    
    Range("A2:Z" & LastRow).Sort key1:=Range("B2:B" & LastRow), _
    order1:=xlAscending, Header:=xlNo
    End Sub
    Can anyone assist me as to how I can change my VBA code to delete the duplicate with the oldest date?

  2. #2
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Excel VBA To delete duplicates with oldest date

    Put another sort command at the top that sorts the dates ASCENDING, then the row above will always be the one to remove.
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

  3. #3
    Registered User
    Join Date
    09-15-2015
    Location
    Lodz, Poland
    MS-Off Ver
    2010
    Posts
    16

    Re: Excel VBA To delete duplicates with oldest date

    As a output you want to have only unique values? So if you have 3 same values in column B with different dates you need to leave only one with the newest date or delete only the oldest?

  4. #4
    Registered User
    Join Date
    09-03-2014
    Location
    South Africa
    MS-Off Ver
    MS Office 2010
    Posts
    40

    Re: Excel VBA To delete duplicates with oldest date

    That is correct wator89. JBeaucaire I will try thank you

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Event based timestamp - after x number of entries delete oldest
    By rblissett in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 06-25-2014, 02:20 PM
  2. [SOLVED] Delete duplicate rows containing the oldest date and time entries
    By 180drop in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 05-25-2014, 05:48 AM
  3. Remove duplicates and keep oldest entry
    By Bond007 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 03-11-2014, 12:22 PM
  4. Cannot delete the duplicates on date criteria
    By kwik98 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 06-15-2010, 02:58 AM
  5. removing oldest duplicates by date
    By zkcelltest in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 02-29-2008, 02:34 PM
  6. Delete Newest (by date) Duplicates
    By joshtreee in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 02-21-2008, 10:25 AM
  7. Delete oldest duplicates
    By Pindacko in forum Excel - New Users/Basics
    Replies: 2
    Last Post: 11-20-2007, 10:18 PM

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