Hi,
I have searched online tutorials and I am stumped as to why I can't merge two tables in Power query.
I have therefore created a very simple example
If I do the the follow I will get these results:
Get Data > Combine queries > Merge > Table 1 (Select ID) and Table 2 (Select ID) > Full Outer Join
=Table.NestedJoin(Table1, {"ID"}, Table2, {"ID"}, "Table2", JoinKind.FullOuter)
Can anyone please advise why joining on the Unique Identifier and performing a full outer join is returning the results above.
Thanks,
Jas
I have searched online tutorials and I am stumped as to why I can't merge two tables in Power query.
I have therefore created a very simple example
ANIMAL | COUNT | ID |
DOG | 1 | 2 |
CAT | 5 | 1 |
ANIMAL | COUNT | ID |
CAT | 6 | 1 |
MONKEY | 3 | 4 |
If I do the the follow I will get these results:
Get Data > Combine queries > Merge > Table 1 (Select ID) and Table 2 (Select ID) > Full Outer Join
=Table.NestedJoin(Table1, {"ID"}, Table2, {"ID"}, "Table2", JoinKind.FullOuter)
ANIMAL | COUNT | ID | Table2 |
---|---|---|---|
CAT | 5 | 1 |
null | null | null |
DOG | 1 | 2 |
Can anyone please advise why joining on the Unique Identifier and performing a full outer join is returning the results above.
Thanks,
Jas