Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I have three data tables from three separate sources that should reconcile to each other, in theory, but do not. I would like to create a "Master" table from the three in order to build an exception list and identify the non-reconclied items. The unique identifier is the same across all three tables and duplicate unique IDs within any table can exist.
Something like combine Table1[UniqueID], Table2[UniqueID] & Table3[UniqueID] into MasterTable[UniqueID] so that I have a single column table of all unique IDs with all duplicates removed. From there, I can build my cross references and exception report.
Any help is greatly appreciated.
Solved! Go to Solution.
Hi @tango1201,
I try to reproduce your scenario, I create the following sample tables.
Append the two tables together by clicking Test1->Append Query->Append Test2 table.
Remove other columns, only leave UniqueID column, them remove the duplicates. You will get the following result table.
Here is my Query statement.
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjQ0VIrViVYyMjIC08bGxmDaxMREKTYWAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [UniqueID = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"UniqueID", Int64.Type}}),
#"Appended Query" = Table.Combine({#"Changed Type", Test2}),
#"Removed Columns" = Table.RemoveColumns(#"Appended Query",{"name"}),
#"Removed Duplicates" = Table.Distinct(#"Removed Columns")
in
#"Removed Duplicates"
Best Regards,
Angelia
Hi @tango1201,
I try to reproduce your scenario, I create the following sample tables.
Append the two tables together by clicking Test1->Append Query->Append Test2 table.
Remove other columns, only leave UniqueID column, them remove the duplicates. You will get the following result table.
Here is my Query statement.
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjQ0VIrViVYyMjIC08bGxmDaxMREKTYWAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [UniqueID = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"UniqueID", Int64.Type}}),
#"Appended Query" = Table.Combine({#"Changed Type", Test2}),
#"Removed Columns" = Table.RemoveColumns(#"Appended Query",{"name"}),
#"Removed Duplicates" = Table.Distinct(#"Removed Columns")
in
#"Removed Duplicates"
Best Regards,
Angelia
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 38 | |
| 38 | |
| 28 | |
| 25 |
| User | Count |
|---|---|
| 124 | |
| 87 | |
| 70 | |
| 66 | |
| 65 |