Hello kind people
I have a workspace which brings in two datasets, each of which holds a property reference number and a name. What I need to do is compare the similarity of the names held in each dataset for each property. Both datasets have multiple (but different numbers of) names per property i.e.
DATASET 1:
1, BOB
1, ANNA
2, TED
DATASET 2:
1, BOBBY
1, TINA
1, IAN
2, TIM
2, BOB
What I want to do is use FuzzyStringComparer to evaluate each record in dataset 1 against all other records in dataset 2 which share the same property reference number.
So in the example above, the highest value FuzzyStringComparer would return would be for property 1 (BOB v BOBBY).
Can anyone offer any suggestions on how best to approach this?
Thanks in advance,
Riley