0
0
Power BIbi_tool~20 mins

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

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

Which statement best describes the behavior of page-level filters in a Power BI report?

APage-level filters apply only to the visuals on the current report page.
BPage-level filters apply to all pages in the report.
CPage-level filters apply only to a single visual on the page.
DPage-level filters override report-level filters on all pages.
Attempts:
2 left
💡 Hint

Think about the scope of filters and how they affect visuals grouped by pages.

🎯 Scenario
intermediate
1:30remaining
Applying Page-Level Filters for Regional Sales

You have a report with multiple pages showing sales data for different regions. You want to filter the 'West' region sales only on the 'West Region' page without affecting other pages. Which filter type should you use?

APage-level filter for 'West' region on the 'West Region' page
BReport-level filter for 'West' region
CVisual-level filter for 'West' region on all visuals
DNo filter; use slicers instead
Attempts:
2 left
💡 Hint

Consider the filter scope that limits filtering to one page only.

dax_lod_result
advanced
2:00remaining
DAX Measure with Page-Level Filter Impact

Given a page-level filter on 'Year' = 2023, what is the result of the following DAX measure on that page?

Sales 2023 = CALCULATE(SUM(Sales[Amount]), ALL(Sales[Year]))
Power BI
Sales 2023 = CALCULATE(SUM(Sales[Amount]), ALL(Sales[Year]))
AZero because ALL removes all filters including page-level
BSum of Sales Amount only for Year 2023 due to page filter
CSum of Sales Amount for all years ignoring the page filter
DSum of Sales Amount for the current filter context including page filter
Attempts:
2 left
💡 Hint

Recall what the ALL function does to filters in DAX.

visualization
advanced
2:00remaining
Designing a Report Page with Page-Level Filters

You want to create a report page that shows sales data filtered by 'Product Category' using a page-level filter. Which of the following design choices best follows Power BI best practices?

AAdd a slicer for 'Product Category' on the page and also apply the same filter in the page-level Filters pane.
BApply the 'Product Category' filter in the Filters pane at the page level and do not add slicers for it on the page.
CApply the 'Product Category' filter only as a visual-level filter on each visual.
DUse report-level filter for 'Product Category' and add slicers on the page.
Attempts:
2 left
💡 Hint

Think about filter redundancy and user experience.

🔧 Formula Fix
expert
2:30remaining
Troubleshooting Unexpected Filter Behavior

You applied a page-level filter on 'Region' = 'East' but notice that some visuals on the page still show data from other regions. What is the most likely cause?

AThe report-level filter is set to include all regions, overriding page-level filters.
BThe page-level filter is not saved properly and is inactive.
CThe data model has inactive relationships causing filter issues.
DSome visuals have visual-level filters that override the page-level filter.
Attempts:
2 left
💡 Hint

Consider filter precedence and overrides in Power BI.