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
Manual
Bill Jelen's website offers three non-VBA techniques
For (3) the equivalent VBA would be something like this (for no headers)
ActiveSheet.Range("$A$1:$C$100").RemoveDuplicates Columns:=1, Header:=xlNo

Handling existing duplicates
My free Duplicate Master addin will let you
duplicates on either cells, entire rows (which appears to be your question) or certain columns in a row
But more importantly it will let you run more complex matching than exact strings, ie
