I was wondering if anyone knows how to delete repeated rows.. Say for example,
A B C 1 1 3 4 2 2 6 9 3 TEST
Easiest way to do this in VBA (in 2007 or higher):
Worksheet("Sheet1").Range("A1").CurrentRegion.RemoveDuplicates(Array(1, 2, 3))
Depending on your worksheet layout you might need to adjust Range("A1").CurrentRegion to your data range...
Range("A1").CurrentRegion