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
RB1
New Member

New table from non related Table1.ColumnA and Table2.ColumnB, outer join

Hi,


Hope the title makes sense. I have two tables that are not directly related (listed below) and I need to create a third where each value from each table is captured. Example below.

 

Because most of the data is calculated, I cannot use the Query Editor as these tables / columns are not visible.

 

Table1 (Manually entered query) = "Name" and a few calculated columns

Table2 (Calculated columns only) = Month Names, Year+Month, Quarter, Year+Quarter from 2017-2019

 

New table needs to look like this:

 

A - 2017 Q1

A - 2017 Q2

A - 2017 Q3

A - 2017 Q4

A - 2018 Q....

B - 2017 Q1

B - 2017 Q2

B - 2017 Q....

 

Any ideas?

 

3 REPLIES 3
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @RB1,

 

Could you please mark the proper answers as solutions?

 

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @RB1

 

You can use the function CROSSJOIN. Please also check out the demo in the attachment.

 

Table = CROSSJOIN('Table1', 'Table2')

 

Best Regards,
Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Hello @RB1,

 

You can use the DAX function USERELATIONSHIP nested with a CALCULATE, like:

 

CALCULATE ( [Measure] ; USERELATIONSHIP ( FirstTable ; Second Table))

Cheers,

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