Hi,
I'm looking for a simple solution to put 2 data sets next to eachother but without generating all possible combinations. Unfortunately I wasn't able to find anything in existing topics.
Here are the inputs:
| Key | Value1 |
| Key1 | 12 |
| Key2 | 543 |
| Key2 | 765 |
| Key2 | 987 |
| Key | Value2 |
| Key1 | 32 |
| Key1 | 12 |
| Key1 | 321 |
| Key2 | 765 |
| Key2 | 876 |
And expected output:
| Key | Value1 | Value2 |
| Key1 | 12 | 32 |
| Key1 | | 12 |
| Key1 | | 321 |
| Key2 | 543 | 765 |
| Key2 | 765 | 876 |
| Key2 | 987 | |
All help is appreciated!