cmajka
New member
- Joined
- Jun 27, 2017
- Messages
- 15
- Reaction score
- 0
- Points
- 0
- Location
- Massachusetts
- Excel Version(s)
- O365
Hi -
Is it possible to merge multiple tables to the same table in one step?
My original code looked like this:
= Table.NestedJoin(#"Expanded NewColumn",{"BI_Lim"},BILIMIT,{"ORIGINAL"},"NewColumn",JoinKind.LeftOuter)
but what if I wanted to join another table in the same step...something like this:
= Table.NestedJoin(#"Expanded NewColumn",{"BI_Lim"},BILIMIT,{"ORIGINAL"},"NewColumn",JoinKind.LeftOuter),",{"PD_Lim"},PDLIMIT,{"ORIGINAL"},"NewColumn",JoinKind.LeftOuter)
However, this doesn't seem to work. Am I missing something in the syntax? I have about 15 'lookup' tables that I would like to merge with my main table, and this would save a lot of repetitive steps.
Thanks!
Is it possible to merge multiple tables to the same table in one step?
My original code looked like this:
= Table.NestedJoin(#"Expanded NewColumn",{"BI_Lim"},BILIMIT,{"ORIGINAL"},"NewColumn",JoinKind.LeftOuter)
but what if I wanted to join another table in the same step...something like this:
= Table.NestedJoin(#"Expanded NewColumn",{"BI_Lim"},BILIMIT,{"ORIGINAL"},"NewColumn",JoinKind.LeftOuter),",{"PD_Lim"},PDLIMIT,{"ORIGINAL"},"NewColumn",JoinKind.LeftOuter)
However, this doesn't seem to work. Am I missing something in the syntax? I have about 15 'lookup' tables that I would like to merge with my main table, and this would save a lot of repetitive steps.
Thanks!