Hi, I have a need to remove rows from a list object but only if the entire row is a duplicate.
I have toe following code that works on 1 column but not the row.
Code
Sub remove_duplicates_city()
Set Rng = ActiveWorkbook.Sheets("City_Report").ListObjects("City_Data").DataBodyRange
Rng.RemoveDuplicates
End Sub
Any ideas on how to approach this?
Dave