I'm interested in taking the output of a Fuzzy Match and looking at the records one under the other.
The data to be matched can create many columns so comparing matches next to each other horizontally doesn't work very well.
Say my unique identifier is "DL_NUM" and "Name" is my fuzzy match field. The results of the tool look like the following -
DL_NUM1 DL_NUM2
123 456
789 0AB
CDE FGH
457 1AC
What I want to see is a dataset that looks like
DL_NUM Name
123 Bob Smith
456 Rob Smith
789 Joe Ruth
0AB Jose Rutj
CDE Beethoven
FGH Beetoven
457 Charly
1AC Chaly
My first thought was to split the sets, use the RECORD ID tool on each with alternating identifiers (so one has odds, one has evens), union them together, and then sort on those. I don't see an option in the RECORD ID tool to skip a number, though.
I thought maybe one of the tools in the "Transform" family might help. Didn't find any options or functionality there either.
How would I set up something like what I want?