0
0
Power BIbi_tool~20 mins

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

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

Which statement best describes the effect of applying a visual-level filter in Power BI?

AIt filters data only for the selected visual without affecting other visuals on the report page.
BIt filters data for all visuals on the report page but not on other pages.
CIt filters data for the entire report across all pages and visuals.
DIt permanently removes filtered data from the dataset.
Attempts:
2 left
💡 Hint

Think about how filters affect visuals individually versus globally.

dax_lod_result
intermediate
2:00remaining
DAX Measure with Visual-Level Filter Impact

Given a measure Total Sales = SUM(Sales[Amount]) and a visual-level filter on Sales[Region] set to "West", what will Total Sales show in that visual?

Power BI
Total Sales = SUM(Sales[Amount])
ASum of sales amounts for all regions but only for the current year.
BSum of sales amounts for all regions ignoring the filter.
CSum of sales amounts only for the West region.
DSum of sales amounts excluding the West region.
Attempts:
2 left
💡 Hint

Visual-level filters limit the data context for the measure in that visual.

visualization
advanced
2:00remaining
Choosing the Correct Visual-Level Filter Setup

You want to show a bar chart of monthly sales but only for products in the "Electronics" category. Which visual-level filter setup is correct?

AApply a visual-level filter on <code>Product[Category]</code> set to "Electronics" on the bar chart visual.
BApply a page-level filter on <code>Product[Category]</code> set to "Electronics" on the report page.
CApply a report-level filter on <code>Product[Category]</code> set to "Electronics" on the entire report.
DCreate a calculated column filtering only Electronics products and use it in the visual.
Attempts:
2 left
💡 Hint

Focus on filtering only the specific visual, not the whole page or report.

🔧 Formula Fix
advanced
2:00remaining
Troubleshooting Visual-Level Filter Not Working

You applied a visual-level filter on Customer[Country] to show only "USA" customers in a table visual, but the table still shows all countries. What is the most likely cause?

AThe visual-level filter is overridden by a page-level filter including all countries.
BThe data model has no relationship between Customer and the table's fact data.
CThe filter is applied on a slicer, not on the visual-level filter pane.
DThe <code>Customer[Country]</code> field is not included in the visual's data fields.
Attempts:
2 left
💡 Hint

Consider how relationships affect filtering in visuals.

🎯 Scenario
expert
2:00remaining
Combining Visual-Level Filters with DAX Measures

You have a measure High Sales Count = CALCULATE(COUNTROWS(Sales), Sales[Amount] > 1000). You apply a visual-level filter on Sales[Year] = 2023. What does High Sales Count show in the visual?

ACount of all sales rows regardless of year or amount.
BCount of sales rows with amount &gt; 1000 for all years ignoring the filter.
CCount of sales rows for year 2023 ignoring the amount filter.
DCount of sales rows with amount &gt; 1000 only for year 2023.
Attempts:
2 left
💡 Hint

Visual-level filters affect the filter context of measures unless overridden inside the measure.