Sort duplicates in column D then delete duplicates in column Y

Eaton

New Member
Joined
Apr 21, 2016
Messages
3
I need a formula or macro that can sort a large data file.
I want to be able to sort the data by Column D to group the duplicates (most have 6-8 duplicates for the same number in Column D).
I then want to delete any duplicates within this group in Column y.

For example so it all makes more sense:
In Column D I have a customer number. They make multiple orders. I want to group by each customers number. In Column Y, is their locations. I want to delete the duplicate locations per customer.

I cannot find a way to delete the duplicates without it deleting the locations in the entire column Y.

For example: Customer A and B both have a place in TX. When I delete the duplicates it deletes Customer A and B's location. I don't know how to limit this to only delete duplicates per number in Column D.

There are over 12,000 entries and manually doing this would take several days.
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Hi, Eaton
Try this:
Assuming the header in row 1
I want to delete the duplicate locations per customer.
This will clear the cell in col Y that has duplicate locations per customer.
Code:
Sub a936367()
Dim x As Long, rb As Long, ra As Long, y As Long, i As Long
Range("A1").CurrentRegion.Sort key1:=Columns("D"), order1:=xlAscending, _
  key2:=Columns("Y"), order2:=xlAscending, Header:=xlYes
x = Range("A" & Rows.count).End(xlUp).row
y = 2
    Do
        ra = Range("D:D").Find(Cells(y, "D"), _
        SearchDirection:=xlNext).row
    
        rb = Range("D:D").Find(Cells(y, "D"), _
        SearchDirection:=xlPrevious).row
        
        For i = ra + 1 To rb
          If UCase(Cells(i, "Y")) = UCase(Cells(i - 1, "Y")) Then
              Cells(i - 1, "Y").ClearContents
          End If
        Next
        y = rb + 1
    Loop While rb < x
End Sub
 
Upvote 0
Range("A1").CurrentRegion.Sort key1:=Columns("D"), order1:=xlAscending, _
key2:=Columns("Y"), order2:=xlAscending, Header:=xlYes


This part is being highlighted as an error.
In Row 1 I have column names. I'm assuming those could be causing a problem?
 
Upvote 0
This part is being highlighted as an error.
What was the error message?

Do you have empty column between col A & the last column?
If yes, then try changing this:
Code:
Range("A1").CurrentRegion.Sort key1:=Columns("D"), order1:=xlAscending, _
  key2:=Columns("Y"), order2:=xlAscending, Header:=xlYes
to:
Code:
ActiveSheet.UsedRange.Sort Key1:=Columns("D"), Order1:=xlAscending, _
  key2:=Columns("Y"), order2:=xlAscending, Header:=xlYes
Could you post some sample data ( in table)?
 
Last edited:
Upvote 0
I tried the above code in this sample:
BEFORE

Book1
ABCDY
1header1header2header3header4header25
21AAXX
32AAXX
43BBXX
54AAYY
65BBYY
76CCZZ
87BBYY
98BBZZ
Sheet1

AFTER

Book1
ABCDY
1header1header2header3header4header25
21AA
32AAXX
44AAYY
53BBXX
65BB
77BBYY
88BBZZ
96CCZZ
Sheet1


Does it look like the result you expect?
 
Upvote 0
Yes I did. Tried the change and it works great! Thank you!

Is there a way I could have it delete the entire row that has the duplicates in column Y?
That would just make it easier to run a subtotal.
 
Upvote 0
Yes I did. Tried the change and it works great! Thank you!

Is there a way I could have it delete the entire row that has the duplicates in column Y?
That would just make it easier to run a subtotal.
If in your original data in column Y there are no blank cells :
Actually you can just sort the data with column Y, then delete rows that has blank cell in column Y.

Or you can modify the code a bit by adding this blue line ( in the end of the sub):
Code:
[COLOR=#0000cd]Range("Y2:Y" & x).SpecialCells(xlCellTypeBlanks).EntireRow.Delete[/COLOR]
End Sub

But if in your original data in column Y has blank cells, then you will need another code. Let me know if this is the case.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,647
Messages
6,120,722
Members
448,987
Latest member
marion_davis

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