Forum Discussion
Anonymous
5 years agoNot applicable
Merge Two Tables Creating Unique Table With No Duplicates
I am wanting to take two tables and create a new table that looks like the attached power bi file example. My desired new table will match every lease number with every station available. S...
- 5 years ago
Hi, Anonymous
You can use CROSSJOIN function to create a Calculated table to get the result you want.
Table = CROSSJOIN(Lease,Station)
The result looks like this:
Best Regards,
Caiyun Zheng
Is that the answer you're looking for? If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-cazheng-msft
5 years agoCommunity Support
Hi, Anonymous
You can use CROSSJOIN function to create a Calculated table to get the result you want.
Table = CROSSJOIN(Lease,Station)
The result looks like this:
Best Regards,
Caiyun Zheng
Is that the answer you're looking for? If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.