I am currently using the join tool to do my vlookup but I am quickly finding out it may not exactly be a proxy for vlookup like I thought. For example, I have a data set that has 2 columns - unique ID and Date. I need to bring date in by vlookup to my transaction table. My transaction table has multiple records for the same unique ID, however, this report is ran for one day at a time, so the date column for all records on my transaction table is the same.
When I do my join, its adding every transaction for each unique ID instead of just populating the date, in my configuration, I have de-selected all of my columns from the transaction table except the Date column. Is this a system limitation of Alteryx or am I configuring something incorrectly? Is there a more effective way to do an actual vlookup? Please see example below.
Data Set: Transaction Table: After Joining:
Unique ID Date Unique ID Date Trans Type Unique ID Date
1 Blank 1 2/20/24 3 1 02/20/24
2 Blank 2 2/20/24 3 2 02/20/24
3 Blank 3 2/20/24 3 3 02/20/24
4 Blank 4 2/20/24 3 3 02/20/24
5 Blank 5 2/20/24 3 4 02/20/24
5 2/20/24 3 5 02/20/24
3 2/20/24 3 5 02/20/24
I am currently just adding a unique tool after the join to remove the duplicates, however, I'd prefer to not have to do this. Is this really the best way to do a vlookup?
Thank you,