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

Preparing for a certification exam? Ask exam experts all your questions on May 15th. 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
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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