Imagine you have two charts on a Power BI report page: a bar chart showing sales by product category and a pie chart showing sales by region. If you click a bar representing a category, what happens to the pie chart?
Think about how selecting data in one visual affects others on the same report page.
Cross-filtering means selecting data in one visual filters the data in other visuals on the page. So, clicking a bar filters the pie chart to show only related data.
You have a measure Total Sales = SUM(Sales[Amount]). On a report page, a slicer filters the 'Region' column to 'East'. What is the result of Total Sales in a card visual?
Total Sales = SUM(Sales[Amount])
Remember slicers apply filters to visuals and measures.
The measure respects the filter context from slicers. So, it sums sales only for the 'East' region.
You want a scatter chart to filter a table visual when points are selected, but the table should not filter the scatter chart. How do you configure this in Power BI?
Check the 'Edit interactions' feature in Power BI visuals.
To have one visual filter another but not vice versa, set the first visual's interaction on the second to 'Filter' and the second visual's interaction on the first to 'None'.
You have two visuals on a report page, but selecting data in one does not filter the other. Which of the following is the most likely cause?
Think about how Power BI connects data between visuals.
Cross-filtering requires a relationship between tables used by the visuals. Without it, filters cannot propagate.
You have a report with three visuals: a slicer for Year, a bar chart for Product Category, and a line chart for Monthly Sales. You want the slicer to filter both charts, the bar chart to filter the line chart, but the line chart should not filter any other visual. Which setup achieves this?
Remember slicers filter all visuals by default. Use 'Edit interactions' to control filtering directions.
The slicer filters both charts by default. To have bar chart filter line chart but not vice versa, set bar chart's interaction on line chart to 'Filter' and line chart's interactions on others to 'None'.