I've run the macro recorder and seem to have found a way to remove duplicate rows pretty easily. What I would like to do is loop it through all the sheets in the workbook since the workbook is basically full. Anybody know how to loop this code?
Sub deletedupes()
'
Range("A1:N10000").AdvancedFilter Action:=xlFilterCopy, CopyToRange:=Range( _
"AA1"), Unique:=True
Range("A:Z").Select
Selection.Delete Shift:=xlToLeft
End Sub
Bookmarks