I am trying to use the 'Join' function as the Vlookup equivalent in Alteryx, but Vlookup has a function where it will bring back a close match. I have a table of data below, which I am trying to join with another table, however it is only 'joining' when the exact match is found.
For example:
| 365 |
| 322 |
| 201 |
| 42 |
| 110 |
| 79 |
| 7 |
| 128 |
| 305 |
| 224 |
| 189 |
I then have another table with the following:
I would like to join them together to have the following:
| 365 | 239 |
| 322 | 239 |
| 201 | 32 |
| 42 | 32 |
| 110 | 32 |
| 79 | 32 |
| 12 | 12 |
| 128 | 32 |
| 305 | 239 |
| 224 | 32 |
| 189 | 32 |
In this example, the only thing that is currently joining is the '12' as it's an exact match.