SyntaxFix
Write A Post
Hire A Developer
Questions
If you got only one column in the range to clean, just add "(1)" to the end. It indicates in wich column of the range Excel will remove the duplicates. Something like:
Sub norepeat() Range("C8:C16").RemoveDuplicates (1) End Sub
Regards