Forum Discussion
Filtering 2 tables
- Anonymous2 years ago
yes i made the relation between both tables with asset. the solution here is to create a dax measure that passes in the column "required points" and checks the strings in it if they match the column "data points". here's the dax query:
Filter Measure =
VAR SelectedDataPoint = SELECTEDVALUE('Automated'[Data Points])
RETURN
SUMX(
'Dashboard Selection Updated',
IF(CONTAINSSTRING('Dashboard Selection Updated'[Required points], SelectedDataPoint),
1,0
)
)
Hi Anonymous
Make sure you have proper relationship with above 2 tables.
I hope I answered your question!
- Anonymous2 years agoNot applicable
yes i made the relation between both tables with asset. the solution here is to create a dax measure that passes in the column "required points" and checks the strings in it if they match the column "data points". here's the dax query:
Filter Measure =
VAR SelectedDataPoint = SELECTEDVALUE('Automated'[Data Points])
RETURN
SUMX(
'Dashboard Selection Updated',
IF(CONTAINSSTRING('Dashboard Selection Updated'[Required points], SelectedDataPoint),
1,0
)
)