Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon'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.
Hello people,
Is it possible to do this operation below by DAX?
I tried to do it for the CROSSJOIN function, but I didn't have much success.
Solved! Go to Solution.
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.
@Anonymous , refer
https://www.sqlbi.com/articles/from-sql-to-dax-joining-tables/
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
117 | |
85 | |
49 | |
38 | |
28 |
User | Count |
---|---|
189 | |
76 | |
73 | |
54 | |
42 |