0
0
Power BIbi_tool~20 mins

Sync slicers across pages in Power BI - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Sync Slicer Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
How does syncing slicers across pages work in Power BI?

Imagine you have a report with multiple pages. You want a slicer on one page to control filters on other pages too. How does Power BI achieve this?

ABy using the Sync slicers pane to select which slicers to sync across pages.
BBy creating a slicer on each page and manually linking their filters in the data model.
CBy copying the slicer visual and pasting it on other pages without any extra setup.
DBy applying a global filter in the report settings that affects all slicers automatically.
Attempts:
2 left
💡 Hint

Look for a built-in feature that helps connect slicers across pages.

dax_lod_result
intermediate
2:00remaining
DAX measure behavior with synced slicers

You have a synced slicer filtering 'Product Category'. You create this measure:

Total Sales = SUM(Sales[Amount])

What will this measure show when you select 'Bikes' in the synced slicer on any page?

ATotal sales amount for all products, ignoring the slicer selection.
BTotal sales amount only for products in the 'Bikes' category, filtered by the slicer.
CTotal sales amount for the last selected category before 'Bikes'.
DAn error because the measure does not reference the slicer.
Attempts:
2 left
💡 Hint

Think about how slicers filter data and how measures respond.

visualization
advanced
3:00remaining
Design a report with synced slicers across three pages

You want to create a report with three pages: Sales Overview, Product Details, and Region Analysis. You want a slicer for 'Year' synced across all pages. Which setup is correct?

AUse a page-level filter for 'Year' on each page instead of slicers.
BCreate separate slicers for 'Year' on each page without syncing them.
CCreate a slicer for 'Year' on the Sales Overview page only, then enable sync for all pages in the Sync slicers pane.
DCreate a slicer on the Region Analysis page and copy it to the other pages without syncing.
Attempts:
2 left
💡 Hint

Remember syncing requires slicers on each page and enabling sync.

🔧 Formula Fix
advanced
3:00remaining
Why does a synced slicer not filter on one page?

You synced a slicer for 'Region' across three pages. On two pages, the slicer filters data correctly. On the third page, the slicer selection does not filter visuals. What is the most likely cause?

AThe slicer on the third page is not linked in the Sync slicers pane.
BThe data model does not contain the 'Region' column.
CThe visuals on the third page ignore filters by design.
DThe slicer uses a different field than the visuals on the third page.
Attempts:
2 left
💡 Hint

Check if the slicer and visuals use the same field.

🎯 Scenario
expert
4:00remaining
Implementing synced slicers with different filter directions

You have a data model with tables 'Sales', 'Products', and 'Regions'. You want a slicer on 'Regions[RegionName]' synced across pages. However, the 'Sales' table filters 'Products' but not 'Regions' directly. How do you ensure the slicer filters sales data correctly on all pages?

ASet the relationship between 'Regions' and 'Sales' to both directions to allow filtering from slicer to sales.
BCreate a calculated column in 'Sales' to copy 'RegionName' and use that in the slicer.
CUse disconnected slicers and apply manual filter measures in visuals.
DRemove the relationship between 'Products' and 'Sales' to simplify filtering.
Attempts:
2 left
💡 Hint

Think about how filter directions affect slicer filtering across related tables.