Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: StuartObolerHello,
I am testing for duplications using inexact criteria, but I'm having trouble condensing the results to something managable as the results repeat themselves. For example if A and B match I get two results, that A matches B and that B matches A.
A simplified version of the result of a test is as follows:
A B
100 300
100 200
200 300
200 100
300 100
300 200
Columns A and B are both the same field in the source data (the unique id of that record.)
These results tell me:
a) that record 100 matches records 300 and 200.
b) that record 200 matches records 300 and 100.
c) that record 300 matches records 100 and 200.
If I can condense those results to 'unique' matches it would be great.
A B
100 300
100 200
Ideally I would like the results in the following structure
Group Record
1 100
1 200
1 300
Any help would be appreciated.
Thanks,
Stuart