Conditional removal of duplicates

sucram3

New Member
Joined
Sep 19, 2023
Messages
5
Office Version
  1. 365
Platform
  1. Windows
Hi,

I want to sort a column by removing duplicates, but not all duplicates, only those that appear in sequence, i.e:

1
2
3
3 (I want this removed)
4
2
3
2
2 (I want this removed)
3
4
4 (I want this removed)

Reason for this is that I'm trying to build a tree structure where various instances are used on different places in the structure, but not after each other.

I have searched this forum but haven't found anything that helps.

Thanks.
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Welcome to the Board!

What column is this data in and one what row does your data start?
 
Upvote 0
If your data started in cell A1, the VBA to do what you want would look something like this:
VBA Code:
Sub MyDeleteDups()

    Dim lr As Long
    Dim r As Long
    
    Application.ScreenUpdating = False
    
'   Find last row in column A with data
    lr = Cells(Rows.Count, "A").End(xlUp).Row
    
'   Loop through all rows backwards
    For r = lr To 2 Step -1
'       Delete current row if value in column A same as value above it
        If Cells(r, "A").Value = Cells(r - 1, "A").Value Then Rows(r).Delete
    Next r
    
    Application.ScreenUpdating = True
    
End Sub
If it starts anywhere else, we would just need to make a few minor edits to the code above.
 
Upvote 0
you can filter/delete rows that are true

Book1
AB
11
22FALSE
33FALSE
43TRUE
54FALSE
62FALSE
73FALSE
82FALSE
92TRUE
103FALSE
114FALSE
124TRUE
Sheet1
Cell Formulas
RangeFormula
B2:B12B2=A2=A1
Named Ranges
NameRefers ToCells
_FilterDatabase=Sheet1!$A$1:$B$12B2
As you can see, there are multiple ways of accomplishing this.

Just to point out some differences with using Filters as opposed to VBA:
- this kind of filtering will require the use of a "helper" column
- filtering in place will only hide the rows, but nothing will be physically deleted.
- filtering to a new location will only return the rows that meet the criteria to a new location, but you will still have the original data fully intact in its original location

The advantage to using filters is it obviously does not require any VBA code.

Use whichever method suits your needs best!
 
Upvote 0
Hi
What about
VBA Code:
Sub test()
Dim a: Dim c&, i&
    c = 1
    a = Range(Cells(1, 1), Cells(1, 1).End(xlDown))
    ReDim b(1 To UBound(a))
    For i = 1 To UBound(a) - 1
        If a(i + 1, 1) <> a(i, 1) Then b(c) = a(i + 1, 1):   c = c + 1
    Next
Cells(2, 2).Resize(c) = Application.Transpose(b)
End Sub

Heder
1​
1​
2​
2​
3​
3​
3​
4​
4​
2​
2​
3​
3​
2​
2​
3​
3​
4​
4​
4​
 
Upvote 0
If your data started in cell A1, the VBA to do what you want would look something like this:
VBA Code:
Sub MyDeleteDups()

    Dim lr As Long
    Dim r As Long
   
    Application.ScreenUpdating = False
   
'   Find last row in column A with data
    lr = Cells(Rows.Count, "A").End(xlUp).Row
   
'   Loop through all rows backwards
    For r = lr To 2 Step -1
'       Delete current row if value in column A same as value above it
        If Cells(r, "A").Value = Cells(r - 1, "A").Value Then Rows(r).Delete
    Next r
   
    Application.ScreenUpdating = True
   
End Sub
If it starts anywhere else, we would just need to make a few minor edits to the code above.
Thank you so much for this.

My data starts in cell D16.

How would the VBA change in that case? Change "A" to "D"?
 
Upvote 0
Thank you so much for this.

My data starts in cell D16.

How would the VBA change in that case? Change "A" to "D"?
Like this:
VBA Code:
Sub MyDeleteDups()

    Dim lr As Long
    Dim r As Long
    
    Application.ScreenUpdating = False
    
'   Find last row in column D with data
    lr = Cells(Rows.Count, "D").End(xlUp).Row
    
'   Loop through all rows backwards
    For r = lr To 17 Step -1
'       Delete current row if value in column D same as value above it
        If Cells(r, "D").Value = Cells(r - 1, "D").Value Then Rows(r).Delete
    Next r
    
    Application.ScreenUpdating = True
    
End Sub
 
Upvote 0
Solution
Like this:
VBA Code:
Sub MyDeleteDups()

    Dim lr As Long
    Dim r As Long
   
    Application.ScreenUpdating = False
   
'   Find last row in column D with data
    lr = Cells(Rows.Count, "D").End(xlUp).Row
   
'   Loop through all rows backwards
    For r = lr To 17 Step -1
'       Delete current row if value in column D same as value above it
        If Cells(r, "D").Value = Cells(r - 1, "D").Value Then Rows(r).Delete
    Next r
   
    Application.ScreenUpdating = True
   
End Sub
I tried this code and had it running for a while, and while testing 200 rows, it worked great. Although when running it on the complete set, all 250000 rows, it appeared to be a bit time consuming.

I'm so grateful for your time, despite my workbook being a bit too big.

Thank you.

BR
 
Upvote 0

Forum statistics

Threads
1,215,098
Messages
6,123,082
Members
449,094
Latest member
mystic19

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top