Forum Discussion
powerx786
Microsoft Employee
3 years agoMaking CALCULATETABLE filter by selected column
I have data like this in two tables as Table1 and Table2, with same columns In my PowerBI report, I have two filters on Table1's Type and Table2's Type columns like below. ...
Jihwan_Kim
Super User
3 years agoPlease try something like below to create a calculated table whether it suits your requirement.
Table4 =
UNION (
CALCULATETABLE ( Table1, Table1[Type] = "A" ),
CALCULATETABLE ( Table2, Table2[Type] = "A" )
)
powerx786
Microsoft Employee
3 years agoI do not want to give an explicit value (Table1[Type] = "A") for the filter condition as I want to filter by the value selected in the filter visual