Forum Discussion
patfee
7 years agoFrequent Visitor
DAX Union with Measure Column
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 D...
TomMartens
7 years agoSuper User
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
- Anonymous5 years agoNot applicable
Hey Tom,
Is there anyway to make the table responsive to slicers?