Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Hi All,
I have two Table. How can i merge the two tables to get final out put
Table 1
Field1 |
A |
B |
C |
Table 2
Field2 |
X |
Y |
Z |
Final Output Table
Field1 | Field2 |
A | X |
A | Y |
A | Z |
B | X |
B | Y |
B | Z |
C | X |
C | Y |
C | Z |
Solved! Go to Solution.
I think there's a CROSSJOIN function in DAX.
Proud to be a Super User! | |
@Anonymous ,
crossjoin(Table1, Table2) , all column should different name, otherwise use selectcolumns
I think there's a CROSSJOIN function in DAX.
Proud to be a Super User! | |
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
114 | |
110 | |
109 | |
94 | |
61 |
User | Count |
---|---|
171 | |
139 | |
133 | |
103 | |
86 |