Forum Discussion
Change relationship based on graph selection
- 1 year ago
Hello ElvirBotic
You can achieve this using USERELATIONSHIP in a measure instead of changing the active relationship.
ActualClosures =
CALCULATE(
COUNT(FactTable[ID]),
USERELATIONSHIP(DateDim[Date], FactTable[ActualDate])
)Use this measure in your table visualization.
When a user selects a bar from the Actual Closures graph, it will filter based on Actual Date.
No need for separate pages
Thanks,
PankajIf this solution helps, please accept it and give a kudos (Like), it would be greatly appreciated.
I have two tables and create bar graph and scatter plot graph . I encounter an issue where when I click somewhere in the bar chart, the scatter plot also changes, but the table I use for both the bar chart and the scatter plot is not related. Both of the tables dont have any relationship and even in the model views , it doesnt show any relationship . I have try to format the interaction but it seems like when i click the bar graph , the scatter plot still go through changes .