I have this code:
Workbooks("Test.xlsx").Worksheets("Sheet1").Range("A:D").RemoveDuplicates Columns:=1, Header:=xlNo
The problem is that if at least 1 duplicate is found it deletes the entire row.
I need something like this:
If (duplicate is found on on columns A & C) then delete entire row
I mean delete the row where columns A has duplicates of above/below rows on it and also column C contains duplicates of above/below rows.
Any help would be appreciated! Thank you!