Hello everyone,
I am a little lost on how to do the following join in alteryx.
Dataset 1:
Col A | Col B | Col C |
id1 | ABC | 123 |
id2 | DEF | 456 |
id3 | GHI | 567 |
id4 | JKL | 789 |
id5 | MNO | 322 |
Dataset 2
Column A | Column B |
id1 | U |
id1 | V |
id2 | W |
id2 | X |
id2 | Y |
id3 | Z |
Final dataset:
Col A | Col B | Col C | Column B |
id1 | ABC | 123 | U,V |
id2 | DEF | 456 | W,X,Y |
id3 | GHI | 567 | Z |
id4 | JKL | 789 | |
id5 | MNO | 322 |
I want to be able to join the two files with the final column data being appended into the same column and row separated by columns as shown in the final dataset.
Any help would be highly appreciated. Thanks!!