Hello,
I am trying to two data tables with the exact same structure. For example, My first table might look like,
Code | Value 1 | Value 2 |
1 | 1.1 | Desc |
2 | ||
3 | 2.5 | Desc |
And the second table:
Code | Value 1 | Value 2 |
1 | ||
2 | 2.2 | Desc |
3 |
|
I want it to look like:
Code | Value 1 | Value 2 |
1 | 1.1 | Desc |
2 | 2.2 | Desc |
3 | 2.5 | Desc |
But instead I get:
Code | Value 1 | Value 2 | Right_Value 1 | Right_Value 2 |
1 | 1.1 | Desc | ||
2 | 2.2 | Desc | ||
3 | 2.5 | Desc |
|
How do I get my desired table? The data in question is much more complicated with around 15,000 rows and 200 columns. So my join is giving me 15,000 rows and 400 columns. I've also tried a union but that just gives my 30,000 rows.
If it helps the tables definitely have the same name as they were creating within Alteryx off of two other tables being joined together on different primary keys.
Thank you!
Solved! Go to Solution.
hey @kfish
the way to know if you're stacking or joining is if the column structure is the same, you're generally stacking - if you want to add columns you're joining. Think of a join as a way of enriching your data.
Simple solution here: