SteveOranjin
Board Regular
- Joined
- Dec 18, 2017
- Messages
- 170
Can someone take a look at the VBA I wrote?
What I want this VBA to do is, remove all rows where there is a duplicate in a column with a certain header.
So I want it to work JUST like the remove duplicates, except I want it to run on the basis of a certain header.
sbRemoveDuplicatesSpecificWithHeaders() Range("Sheet1").RemoveDuplicates Columns:=Array(1), Header:= "SKU" xlYes End Sub
Anyone think they can help?
What I want this VBA to do is, remove all rows where there is a duplicate in a column with a certain header.
So I want it to work JUST like the remove duplicates, except I want it to run on the basis of a certain header.
sbRemoveDuplicatesSpecificWithHeaders() Range("Sheet1").RemoveDuplicates Columns:=Array(1), Header:= "SKU" xlYes End Sub
Anyone think they can help?