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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have two tables and I would like to create a new table based on two columns. one column from each table.
For instance, Table 1 has Contact ID column and Table 2 has BC # column. I would like to make Table 3 that has Contact ID and BC column in one table.
I cannot use merge because these table do not have a relationship with each other. I am trying to create a bridge table for data modeling relationship purpose
Solved! Go to Solution.
@ysherriff so you want the cross join of them?
If yes than it's:
Table = CROSSJOIN(DISTINCT('Table1'[Contact ID]),DISTINCT('Table2'[BC #])
Solved.
Utilized this website to create a bridge table.
How to Join Many to Many with a Bridge Table in Power BI | Seer Interactive
@ysherriff so you want the cross join of them?
If yes than it's:
Table = CROSSJOIN(DISTINCT('Table1'[Contact ID]),DISTINCT('Table2'[BC #])