I am working with a large data set that requires cleaning due to human error. One of the most obvious errors that people make create unique, triplicate, or quadruplicate entries. A proper entry would always be a duplicate.
I'm looking for some advice (I'm quite new at this) at writing a VBA script to only keep duplicates.
Here is an example of the kind of manual paring I am doing now.
UIN Catagory Value
1001 A 100
1001 B 50
1002 A 100
1002 B 75
1003 A 80
1004 A 1
1004 A 100
1004 B 25
1005 A 120
1005 B 70
1006 A 120
1006 A 124
1006 B 76
1006 B 75
1007 A 120
1007 B 70
to go to
UIN Category Value
1001 A 100
1001 B 50
1002 A 100
1002 B 75
1005 A 120
1005 B 70
1007 A 120
1007 B 70
Bookmarks