Results 1 to 4 of 4

Delete Dupes Macro - Error When No Dupes

Threaded View

  1. #1
    Registered User
    Join Date
    02-13-2008
    Posts
    4

    Delete Dupes Macro - Error When No Dupes

    Hi -

    I have the below macro that I have been using, and it works perfect to flag and remove duplicates. But when there are no duplicates found on the sheet, I get an error at the line below in red.

    I am not sure how I would revise this to account for a scenario when there are no duplicates to remove, and I was hoping that someone might be able to assist me here today.

    Thank You SO much in advance!!


    Sub G_Delete_Dupes_From_Main()
     
    
    Dim toDel(), I As Long
     Dim RNG As Range, Cell As Long
     Set RNG = Range("B2:B" & Range("B" & Rows.Count).End(xlUp).Row)
     
    
    For Cell = 1 To RNG.Cells.Count
     If Application.CountIf(RNG, RNG(Cell)) > 1 Then
     ReDim Preserve toDel(I)
     toDel(I) = RNG(Cell).Address
     I = I + 1
     End If
     Next
     For I = UBound(toDel) To LBound(toDel) Step -1
     Range(toDel(I)).EntireRow.Delete
     
    Next I
     
    End Sub
    Last edited by JBeaucaire; 09-29-2014 at 11:53 AM. Reason: Added missing CODE tags. Please read and follow the Forum Rules, link above in the menu bar. Thanks.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Compare 2 worksheets, delete dupes and group by back fill color using macro
    By jousterlj in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 08-25-2011, 01:50 PM
  2. Macro to remove Dupes
    By H-Man3 in forum Excel Programming / VBA / Macros
    Replies: 14
    Last Post: 02-24-2011, 12:03 PM
  3. Use Macro to Sum Dupes then delete - Help please
    By annasproule in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 02-06-2011, 10:38 PM
  4. Delete dupes except first 2
    By light in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 12-20-2010, 06:14 PM
  5. delete dupes macro
    By vasto in forum Excel General
    Replies: 0
    Last Post: 09-28-2009, 01:38 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