0
0
Power BIbi_tool~20 mins

Cross-filtering between visuals in Power BI - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Cross-filtering Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
1:30remaining
How does cross-filtering affect visuals in Power BI?

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?

AThe bar chart resets to show all categories again.
BThe pie chart remains unchanged and shows sales for all categories.
CBoth charts clear their filters and show all data.
DThe pie chart updates to show sales only for the selected product category.
Attempts:
2 left
💡 Hint

Think about how selecting data in one visual affects others on the same report page.

dax_lod_result
intermediate
1:30remaining
DAX measure result with cross-filtering

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?

Power BI
Total Sales = SUM(Sales[Amount])
ASum of sales amounts only for the 'East' region.
BSum of sales amounts for all regions ignoring slicer.
CSum of sales amounts for regions except 'East'.
DZero, because slicers do not affect measures.
Attempts:
2 left
💡 Hint

Remember slicers apply filters to visuals and measures.

visualization
advanced
2:00remaining
Configuring cross-filtering behavior between visuals

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?

ASet the scatter chart's visual interaction on the table to 'Filter' and the table's interaction on the scatter chart to 'None'.
BSet both visuals to 'Highlight' interaction on each other.
CSet both visuals to 'Filter' interaction on each other.
DSet the scatter chart's interaction on the table to 'None' and the table's on scatter chart to 'Filter'.
Attempts:
2 left
💡 Hint

Check the 'Edit interactions' feature in Power BI visuals.

🔧 Formula Fix
advanced
1:30remaining
Why does cross-filtering not work between two visuals?

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?

AThe visuals are on different report pages.
BThe data model has too many columns.
CThe two visuals are based on unrelated tables without a relationship.
DThe visuals use different color themes.
Attempts:
2 left
💡 Hint

Think about how Power BI connects data between visuals.

🎯 Scenario
expert
2:30remaining
Designing cross-filtering for complex report interactions

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?

AUse slicer to filter line chart only; set bar chart interaction on slicer to 'Filter'; set line chart interaction on bar chart to 'Filter'.
BUse slicer to filter both charts; set bar chart interaction on line chart to 'Filter'; set line chart interactions on slicer and bar chart to 'None'.
CUse slicer to filter bar chart only; set line chart interaction on bar chart to 'Filter'; set bar chart interaction on slicer to 'None'.
DUse slicer to filter both charts; set line chart interaction on bar chart to 'Filter'; set bar chart interaction on line chart to 'None'.
Attempts:
2 left
💡 Hint

Remember slicers filter all visuals by default. Use 'Edit interactions' to control filtering directions.