0
0
Power BIbi_tool~20 mins

Slicers (list, dropdown, between) in Power BI - Practice Problems & Coding Challenges

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

Which slicer type in Power BI allows users to select a range of numeric values by dragging handles on a slider?

ADropdown slicer
BBetween slicer
CList slicer
DDate slicer
Attempts:
2 left
💡 Hint

Think about which slicer lets you pick a start and end value on a continuous scale.

visualization
intermediate
2:00remaining
Choosing the Best Slicer for Category Selection

You have a product category field with 50 unique values. Which slicer type is best to allow users to quickly find and select categories without scrolling through a long list?

AList slicer with multi-select enabled
BList slicer with single select
CBetween slicer
DDropdown slicer with search enabled
Attempts:
2 left
💡 Hint

Consider which slicer type supports searching within many items.

dax_lod_result
advanced
2:30remaining
DAX Measure Behavior with Slicer Filtering

Given the following DAX measure:

Total Sales Selected = CALCULATE(SUM(Sales[Amount]), ALLSELECTED(Product[Category]))

If a list slicer on Product[Category] has 'Bikes' and 'Accessories' selected, what will this measure return?

ASum of Sales Amount only for 'Bikes' and 'Accessories' categories
BSum of Sales Amount for all categories ignoring slicer selection
CSum of Sales Amount for categories not selected in the slicer
DSum of Sales Amount for all categories except 'Bikes' and 'Accessories'
Attempts:
2 left
💡 Hint

Recall that ALLSELECTED respects slicer selections but removes other filters.

🎯 Scenario
advanced
3:00remaining
Designing a Dashboard with Multiple Slicer Types

You are building a sales dashboard. You want users to filter by:

  • Product Category (many values)
  • Order Date (range selection)
  • Region (few values)

Which combination of slicer types is best to optimize user experience?

ADropdown slicer for Product Category, Between slicer for Order Date, List slicer for Region
BList slicer for Product Category, Dropdown slicer for Order Date, Between slicer for Region
CList slicer for Product Category, Between slicer for Order Date, Dropdown slicer for Region
DBetween slicer for Product Category, List slicer for Order Date, Dropdown slicer for Region
Attempts:
2 left
💡 Hint

Think about which slicer types fit best for many values, date ranges, and few values.

🔧 Formula Fix
expert
3:00remaining
Troubleshooting Slicer Filtering Issue

A report uses a dropdown slicer on 'Customer Segment'. Users report that selecting a segment does not filter the sales chart as expected. Which of the following is the MOST likely cause?

AThe relationship between Customer Segment and Sales tables is inactive or missing
BThe slicer visual is filtered to show only one segment, so selection has no effect
CThe slicer is set to 'Between' mode which does not support text fields
DThe slicer is set to single select mode, but the measure uses ALLSELECTED which ignores single selections
Attempts:
2 left
💡 Hint

Check data model relationships when slicers do not filter visuals.