I have values in Column B of Sheet #1. I want to copy those values to a different sheet, then remove the duplicate values.
I have the following code:
tSheet.Range("B2:B" & tSheet.Range("B" & tSheet.Rows.Count).End(xlUp).Row).Copy
tWb.Sheets("HELPER").Cells(1, 1).PasteSpecial Paste:=xlPasteValues
Range("A1:A10").RemoveDuplicates
It is not removing the duplicates.