0
0
Power BIbi_tool~20 mins

Report-level filters in Power BI - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Report-Level Filter Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding Report-Level Filters

In Power BI, what is the main effect of applying a report-level filter?

AIt creates a new table with filtered data.
BIt filters data on all pages of the report.
CIt filters data only on the selected visual.
DIt filters data only on the current page.
Attempts:
2 left
💡 Hint

Think about how report-level filters affect multiple pages.

dax_lod_result
intermediate
2:00remaining
DAX Measure with Report-Level Filter Context

Given a report-level filter on 'Region' = 'West', what will the following DAX measure return?

Sales West = CALCULATE(SUM(Sales[Amount]), ALL(Sales[Region]))
ATotal sales ignoring the report-level filter on Region.
BTotal sales only for the 'West' region.
CTotal sales for all regions except 'West'.
DZero, because ALL removes all filters including report-level.
Attempts:
2 left
💡 Hint

Recall how the ALL function works with filters.

visualization
advanced
2:00remaining
Choosing the Best Visual for Report-Level Filter Impact

You want to show how a report-level filter on 'Year' affects sales across different product categories on all report pages. Which visual best communicates this impact clearly?

AA line chart showing sales over time without filtering by Year.
BA pie chart showing sales by product category without any filters.
CA table listing sales by product category with no filter applied.
DA bar chart showing sales by product category with a slicer for Year on the report level.
Attempts:
2 left
💡 Hint

Think about how to show filtered data clearly and interactively.

🔧 Formula Fix
advanced
2:00remaining
Debugging Unexpected Filter Behavior

You applied a report-level filter on 'Country' = 'USA', but a visual on a page shows data from all countries. What is the most likely cause?

AThe data model does not include the Country column.
BThe report-level filter is not saved properly.
CThe visual has a visual-level filter overriding the report-level filter.
DThe report-level filter only applies to the first page.
Attempts:
2 left
💡 Hint

Consider filter priority in Power BI.

🎯 Scenario
expert
3:00remaining
Designing Report-Level Filters for Multiple User Roles

You have a report used by sales managers in different regions. You want each manager to see only their region's data by default, but allow them to change the filter if needed. How should you implement this using report-level filters?

AUse dynamic security with USERNAME() and apply region filter dynamically at report level.
BSet a fixed report-level filter for one region and ask managers to change it manually.
CApply page-level filters for each region and duplicate pages for each manager.
DUse visual-level filters on each visual to restrict data by region.
Attempts:
2 left
💡 Hint

Think about how to personalize filters dynamically for users.