0
0
Power BIbi_tool~20 mins

Bookmarks for filter states in Power BI - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Bookmark Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
1:30remaining
What does a bookmark save in Power BI?

In Power BI, when you create a bookmark, what exactly does it save?

AThe raw data source connection details.
BOnly the data model structure and relationships.
CThe current filter and slicer states, visual selections, and the page view.
DThe report theme colors and fonts only.
Attempts:
2 left
💡 Hint

Think about what you want to return to when you click a bookmark.

dax_lod_result
intermediate
1:30remaining
DAX measure effect with bookmark filter state

Given a report with a bookmark that saves a filter on 'Region' = 'West', what will the following DAX measure return when the bookmark is applied?

Sales in Region = CALCULATE(SUM(Sales[Amount]))
AZero, because bookmarks disable measures.
BThe sum of sales only for the 'West' region.
CThe sum of sales for all regions ignoring the bookmark filter.
DAn error because bookmarks do not affect DAX.
Attempts:
2 left
💡 Hint

Bookmarks apply filters visually, which affect measure calculations.

visualization
advanced
2:00remaining
Best practice for bookmark navigation buttons

You want to create a report page with buttons that switch between different bookmark states showing various filter combinations. Which practice ensures the best user experience?

AUse clearly labeled buttons with descriptive text and set the button action to 'Bookmark'.
BUse images without labels and assign bookmarks randomly to buttons.
CUse slicers instead of bookmarks for navigation buttons.
DCreate bookmarks but do not link them to any buttons; users must find them in the bookmark pane.
Attempts:
2 left
💡 Hint

Think about clarity and ease of use for report consumers.

🔧 Formula Fix
advanced
2:00remaining
Why does a bookmark not restore filter state?

You created a bookmark saving a filter on 'Product Category' = 'Bikes'. When you apply the bookmark, the filter does not change. What is the most likely cause?

AThe report page is in edit mode, so bookmarks do not work.
BThe data model does not contain the 'Product Category' column.
CBookmarks cannot save filter states on slicers.
DThe bookmark was created without selecting 'Data' option to save filter states.
Attempts:
2 left
💡 Hint

Check the bookmark settings carefully.

🎯 Scenario
expert
3:00remaining
Using bookmarks to create a dynamic report with multiple filter states

You want to build a sales report that lets users switch between yearly sales, quarterly sales, and monthly sales views using bookmarks. Each view has different slicer selections and visual configurations. What is the best approach to implement this?

ACreate separate bookmarks for each view saving slicer selections and visual states, then add buttons linked to these bookmarks for user navigation.
BCreate one bookmark and manually change slicers each time users want a different view.
CUse multiple report pages instead of bookmarks to separate views.
DUse DAX measures only to switch views without bookmarks or buttons.
Attempts:
2 left
💡 Hint

Think about user convenience and report interactivity.