Which slicer type in Power BI allows users to select a range of numeric values by dragging handles on a slider?
Think about which slicer lets you pick a start and end value on a continuous scale.
The 'Between' slicer lets users select a numeric range by dragging slider handles, which is ideal for filtering continuous values.
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?
Consider which slicer type supports searching within many items.
The dropdown slicer with search lets users type to find categories quickly, which is better than scrolling a long list.
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?
Recall that ALLSELECTED respects slicer selections but removes other filters.
ALLSELECTED keeps the slicer filter context, so the measure sums sales only for the selected categories 'Bikes' and 'Accessories'.
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?
Think about which slicer types fit best for many values, date ranges, and few values.
List slicer works well for many categories to see multiple selections; Between slicer is ideal for date ranges; Dropdown slicer is good for few region values to save space.
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?
Check data model relationships when slicers do not filter visuals.
If the relationship between Customer Segment and Sales tables is inactive or missing, slicer selections won't filter the sales chart.