Hi,
I'm very new to Alteryx and I'm trying match my internal data with an external ID. I have 2 Datasets both containing Addresses.
My Internal data (dataset 1 - Int Mapping) have some Addresses matched to a CSID (external ID from thirdparty data), while there are some rows with 'False' or 'Blank' under the 'True Match in CS Mapping column' with an incorrect ID or no ID.
| Int Property ID | Primary Address | True Match in CS mapping | CSID |
| 107257 | 205 Belfield Rd | TRUE | 8098104 |
| 65123 | 260054 Range Rd 293 | | |
| 104774 | 2815 Argentia Rd | TRUE | 8855077 |
I also have table from the data provider with CSIDs (CS PropertyID):
| Property Address | PropertyType | RBA | CS PropertyID |
| 3348 58th Ave SE | Industrial | 10120 | 9654650 |
| 3520-3534 48th Ave SE | Industrial | 10080 | 9660228 |
| 3535 44th Ave SE | Industrial | 10031 | 9658237 |
| 3624 44th Ave SE | Industrial | 10197 | 9658209 |
To increase the number of matches with a CS Data table, I would like to fuzzy match the internal data to CS Data table for the False and Blank 'True Match in CS Mapping' column, to get potential matches, its matching score and the corresponding CS Address etc..
| Int Property ID | Primary Address | True Match in CS mapping | CSID | Matched CSID | Match Score | Matched Address | Matched Property Type | Matched RBA |
| 65123 | 260054 Range Rd 293 | | | No Match | | | | |
| 65962 | 4030 7 St SE | | | No Match | | | | |
| 66060 | 4156 64 Ave SE | FALSE | 8884431 | 9717504 | 90+% | 4156 64th Ave SE | Industrial | 10284 |
| 66173 | 4300 116 Ave SE | | | 9547200 | 90+% | 4300 116th Ave SE | Industrial | 10000 |
Attached are the full tables with all the columns. Can someone please help with this? Thanks in advance!
Maria