Start Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Fuzzy Match with source ID

Benji27
8 - Asteroid

Hello everyone,

 

I'm a little confuse about Fuzzy Match tool

 

In the example attached, I try to compare master data source (with LSTEAPT = 'DOWJONES') versus a 2nd source (with LSTEAPT = 'ALTIMA' )

For thtat, I have configure, Fuzzy Match tool with Merge option on LSTEAPT field

I have expected to get all ids values from DOWJONES source in the ID column, like this

 

ID                  ID2               MatchScore    MatchKey
38406871    15851737     100                  APS
38406871    43487372     100                  APS

 

But.... I have this result :(

 

ID                  ID2              MatchScore    MatchKey
15851737     38406871     100                 APS
38406871     43487372     100                 APS

 

Is it normal ? 

Or I need to configure another option ?

How can I have all id from source in only column  ID ?

 

Thanks a lot !

4 REPLIES 4
binu_acs
21 - Polaris

@Benji27 something like this?

 

binuacs_0-1675073207793.png

 

Benji27
8 - Asteroid

Hello

 

Thanks but I expected only 2 lines as result like this

 

ID                 ID2               MatchScore MatchKey
38406871    15851737     100 APS
38406871     43487372    100 APS

ArtApa
Alteryx
Alteryx

Hi @Benji27 - The problems is because of your IDs: 15851737 < 38406871 < 43487372

 

IDs from different Data Sources should not overlap and must be unique. Thus I suggest you to assign new IDs. For example, DOWJONES from 1 to 1,000,000 and ALTIMA from 9,000,000 to 10,000,000.

ArtApa_0-1675118113103.png

 

Benji27
8 - Asteroid

@ArtApa Thanks a lot  it's works fine with sequential ID :)

Labels
Top Solution Authors