In Power BI, what is the main effect of applying a report-level filter?
Think about how report-level filters affect multiple pages.
Report-level filters apply to all pages in the report, affecting all visuals unless overridden.
Given a report-level filter on 'Region' = 'West', what will the following DAX measure return?
Sales West = CALCULATE(SUM(Sales[Amount]), ALL(Sales[Region]))
Recall how the ALL function works with filters.
The ALL function removes filters on the specified column, ignoring the report-level filter on Region, so the measure returns total sales for all regions.
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?
Think about how to show filtered data clearly and interactively.
A bar chart with a report-level Year slicer clearly shows sales by category filtered by the selected year across all pages.
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?
Consider filter priority in Power BI.
Visual-level filters override report-level filters, so if a visual has no filter or a conflicting filter, it can show unfiltered data.
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?
Think about how to personalize filters dynamically for users.
Dynamic security with USERNAME() allows applying report-level filters based on the logged-in user, enabling default filtering per region with flexibility.