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!View all the Fabric Data Days sessions on demand. View schedule
I have two unrelated tables that I would like to combine and make a larger key list. Is there a way to achieve the result on the very right? I am using a DirectQuery connection, and would simply like to join these two customer/vendor key lsits with one another. Thanks for the help.
Solved! Go to Solution.
@CoopyJoe Hmm, maybe try renaming the columns and then a Table.Combine in Power Query Editor. In DAX you could do the same thing using UNION and SELECTCOLUMNS like:
New DAX Table =
VAR __Table1 = SELECTCOLUMNS('Table 1', "Customer/Vendor#", [Vendor #], "Customer/Vendor Name", [Vendor Name])
VAR __Table2 = SELECTCOLUMNS('Table 2', "Customer/Vendor#", [Customer #], "Customer/Vendor Name", [Customer Name])
VAR __Result = UNION(__Table1, __Table2)
RETURN
__Result
Thanks so much, Greg. This got me the result I wanted!
@CoopyJoe Hmm, maybe try renaming the columns and then a Table.Combine in Power Query Editor. In DAX you could do the same thing using UNION and SELECTCOLUMNS like:
New DAX Table =
VAR __Table1 = SELECTCOLUMNS('Table 1', "Customer/Vendor#", [Vendor #], "Customer/Vendor Name", [Vendor Name])
VAR __Table2 = SELECTCOLUMNS('Table 2', "Customer/Vendor#", [Customer #], "Customer/Vendor Name", [Customer Name])
VAR __Result = UNION(__Table1, __Table2)
RETURN
__Result
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!