Forum Discussion
Join in Dax
- Anonymous6 years ago
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.
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] )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.
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.
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]
)
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.