Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello looking for some help I have created to different summarized dax data table and now I would like to combine those to summarized table together if possible.
Table 1 "Monthly Sales"
Has Columns: Sales Rep, Month and Year, and Monthly Sales
Table 2 "Monthly Sales Budget"
Has Columns: Sales Rep, Month and Year and Monthly Sales Budget
What I would like to do is create another new table that puts the Monthly sales next to the Monthly Sales budget.
Please Help.
You could first create a CROSSJOIN of both tables, something like this.
CJ Dates and Customers =
VAR _Dates =
SUMMARIZECOLUMNS ( Dates[Calendar Year], Dates[Month] )
VAR _Customers =
SUMMARIZECOLUMNS ( Customer[Gender], Customer[Education] )
VAR _DatesAndCustomers =
CROSSJOIN ( _Dates, _Customers )
VAR Result =
FILTER (
ADDCOLUMNS (
_DatesAndCustomers,
"Sales", [Total Sales],
"Profits", [Total Profit]
),
NOT ISBLANK ( [Sales] ) || NOT ISBLANK ( [Profits] )
)
RETURN
Result