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.
Table_1 contains Name, Description and Date
Table_2 contains Name, Description
in Table_2 i add the Date column by using measure column. The Date is based on a slicer value
When i then use DAX to Union both Table_1 and 2 i get an error as the tables are not equal.
in other words, the Date in Table_2, created by a measure, is not seen as a "real" column
How can i solve this please?
Hey @Anonymous
I have a similar issue, did you figure how to make the table to refresh on slicer changes?
KS
Hey @Anonymous , if you want to have this table appear in the fields pane, the simple answer is: no.
You can use this table as a virtual table inside other measures as input for calculation though.
Regards,
Tom
Hey,
this DAX statement creates a table:
Table = UNION( Table1 ,ADDCOLUMNS( SUMMARIZE('Table2' ,Table2[ID] ,Table2[thisorthat] ) ,"amount", [amount] ) )
there is a measure "[amount]" this is added as a column using the function ADDCOLUMNS(...)
But you have to be aware, that tables (outside of a measure) that are based on a DAX statement will only be re-calculated on data refresh and not if a query is issued, e.g. if a slicer is changed.
Regards,
Tom
Hey Tom,
Is there anyway to make the table responsive to slicers?
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
144 | |
85 | |
65 | |
50 | |
45 |
User | Count |
---|---|
217 | |
88 | |
81 | |
65 | |
56 |