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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
Anonymous
Not applicable

Join in Dax

Hello people,

 

Is it possible to do this operation below by DAX?

 
 
 

image.png

 

I tried to do it for the CROSSJOIN function, but I didn't have much success.

1 ACCEPTED SOLUTION
v-stephen-msft
Community Support
Community Support

Hi @Anonymous ,

 

1.Rename the columns of Table2. Because when you use the CROSSJOIN function, the column names of the table argument must be different in all tables, otherwise an error will be returned.

1.png

 

2.Create a new table with CROSSJOIN function and filter. This new table is the result.

Table = 
SELECTCOLUMNS (
    FILTER ( CROSSJOIN ( 'Table1', 'Table2' ), [Month] = [Month2] ),
    "Date", [Date2],
    "Month", [Month],
    "Type", [Type]
)

2.png

 

You can check more details from here.

 

 

 

 

Best Regards,

Stephen Tao

 

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-stephen-msft
Community Support
Community Support

Hi @Anonymous ,

 

1.Rename the columns of Table2. Because when you use the CROSSJOIN function, the column names of the table argument must be different in all tables, otherwise an error will be returned.

1.png

 

2.Create a new table with CROSSJOIN function and filter. This new table is the result.

Table = 
SELECTCOLUMNS (
    FILTER ( CROSSJOIN ( 'Table1', 'Table2' ), [Month] = [Month2] ),
    "Date", [Date2],
    "Month", [Month],
    "Type", [Type]
)

2.png

 

You can check more details from here.

 

 

 

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@Anonymous , refer

https://www.sqlbi.com/articles/from-sql-to-dax-joining-tables/

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

Find out what's new and trending in the Fabric community.