In Power BI, what happens when you use the drill-down feature on a hierarchical chart?
Think about how drill-down changes the chart's level of detail.
Drill-down replaces the current chart view with the next level of detail for the selected category, hiding the higher levels to focus on the detailed data.
You want to create a DAX measure that counts sales only for the product selected in a drill-through page. Which measure correctly respects the drill-through filter context?
Measure = COUNTROWS(Sales)
Drill-through passes filters automatically. Which measure respects current filters?
Using COUNTROWS(Sales) respects the current filter context, including drill-through filters. Using ALL or REMOVEFILTERS removes filters, ignoring drill-through.
Which visualization type in Power BI provides the best user experience for drill-down on hierarchical data?
Consider which chart type naturally supports hierarchical drill-down.
Stacked bar charts support hierarchies and allow users to drill down into categories smoothly, making them ideal for drill-down experiences.
You created a drill-through page in Power BI but when you drill through, the page shows all data instead of filtered data. What is the most likely cause?
Check the drill-through page filter settings.
Drill-through requires the filter field to be added to the Drill-through filters well on the target page to apply the filter context.
You have a sales report with a hierarchy: Region > Country > City. You want users to drill down from Region to City and also drill through to a detailed sales transaction page filtered by the selected city. Which setup correctly supports both drill-down and drill-through?
Think about how drill-down and drill-through filters work together.
Enabling hierarchy drill-down allows users to explore data levels. Adding City to Drill-through filters ensures the transaction page filters correctly when drilling through.