Power Bi | Merge Multiple (3+) Tables in a single query

PHOTO EMBED

Fri Feb 04 2022 05:05:29 GMT+0000 (Coordinated Universal Time)

Saved by @cnewnham #vba

let
    merge1 = Table.NestedJoin(Table1, {"ID"}, Table2, {"ID"}, "New", JoinKind.Inner),
    merge2= Table.NestedJoin(merge1, {"ID"}, Table3, {"ID"}, "Final", JoinKind.Inner)
in
    merge2
content_copyCOPY

Note that Merge 1 references the source, In Merge 2 we reference Merge1. ID is the primary key or commonality
https://community.powerbi.com/t5/Desktop/Joining-multiple-tables-in-Power-bi-desktop/td-p/1116936