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

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

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
Feb2025 Sticker Challenge

Join our Community Sticker Challenge 2025

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

Jan NL Carousel

Fabric Community Update - January 2025

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