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 #])
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
User | Count |
---|---|
192 | |
68 | |
66 | |
55 | |
53 |
User | Count |
---|---|
252 | |
207 | |
101 | |
72 | |
70 |