Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not 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. 

 

So Lease 1001 will be created into a table that will show the lease 5 times due to there being 5 stations in the report. 

 

If 6 stations were in the report it would add a 6th row. 

anorville_0-1613671257877.png

 

See link to PBIX file   PBIX File 

 

1 ACCEPTED SOLUTION
v-cazheng-msft
Community Support
Community 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:

v-cazheng-msft_0-1614067678317.png

 

 

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.

 

View solution in original post

2 REPLIES 2
v-cazheng-msft
Community Support
Community 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:

v-cazheng-msft_0-1614067678317.png

 

 

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.

 

Anonymous
Not applicable

Sorry forgot to add the link originally to the PBIX File.

 

Here it is.   Link to PBIX 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors