This is quite a simple task in Excel that I'm trying to replicate with difficulty in Alteryx.
I have two data sets: invoices - 100 records, payments 10,000 records. Made up numbers but to give an idea of magnitude.
My aim is to verify that for all 100 invoices a corresponding payment was made. To do this I tried performing a join on as follows:
L - Payments (Payment Amount, Date, Client Name) - 10,000 records
R - Invoices (Payment Amount, Date, Client Name) - 100 records.
However my J has more than 100 results because the L file has lots of near duplicates (and no easy way to delete them before the join).
Is there a way of doing a one sided join? I.e only for the 100 R's look for a corresponding L and then stop looking.
That way the maximum number of results is 100.
In Excel I acheived this using VLOOKUPS/INDEXMATCHES but would like to do this more elegantly in Alteryx.