Forum Discussion
MarkPalmberg
Kudo Commander
7 years agoTable visual trouble
I have three queries in my data model. One contains unique IDs for all the customers in my database. The second contains address information for my customers (multiple addresses per customer), and th...
v-xicai
Community Support
7 years agoHi MarkPalmberg ,
There are several solutions you can considerate:
1.You may try using the CROSSJOIN function to create a calculated table like DAX below.
Table = CROSSJOIN(Table1,Table2,Table3)
2.You may use Merge Queries (Table.NestedJoin) in Query Editor.
3.You may use the merge feature in Query Editor.
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.