0
0
Power BIbi_tool~20 mins

Drill-down and drill-through in Power BI - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Drill Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding Drill-Down Behavior

In Power BI, what happens when you use the drill-down feature on a hierarchical chart?

AThe chart replaces the current view with the next level of detail for the selected category, hiding the higher levels.
BThe chart expands to show the next level of detail within the selected category, keeping the higher levels visible.
CThe chart filters to show data only for the selected item, removing all other levels.
DThe chart shows a popup with detailed data but does not change the chart view.
Attempts:
2 left
💡 Hint

Think about how drill-down changes the chart's level of detail.

dax_lod_result
intermediate
2:00remaining
DAX Measure for Drill-Through Filtering

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?

Power BI
Measure = COUNTROWS(Sales)
AMeasure = COUNTROWS(Sales)
BMeasure = CALCULATE(COUNTROWS(Sales), ALL(Product))
CMeasure = CALCULATE(COUNTROWS(Sales), VALUES(Product[ProductID]))
DMeasure = CALCULATE(COUNTROWS(Sales), REMOVEFILTERS(Product))
Attempts:
2 left
💡 Hint

Drill-through passes filters automatically. Which measure respects current filters?

visualization
advanced
2:00remaining
Best Visualization for Drill-Down Experience

Which visualization type in Power BI provides the best user experience for drill-down on hierarchical data?

APie chart with drill-down enabled
BCard visualization showing aggregated value
CStacked bar chart with hierarchy enabled
DTable visualization without hierarchy
Attempts:
2 left
💡 Hint

Consider which chart type naturally supports hierarchical drill-down.

🔧 Formula Fix
advanced
2:00remaining
Troubleshooting Drill-Through Filter Not Applying

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?

AThe data model does not have relationships between tables.
BThe source visual does not have any data selected before drilling through.
CThe drill-through page has too many visuals causing performance issues.
DThe drill-through filter field is not added to the Drill-through filters well on the target page.
Attempts:
2 left
💡 Hint

Check the drill-through page filter settings.

🎯 Scenario
expert
3:00remaining
Designing Drill-Down and Drill-Through for Sales Analysis

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?

ACreate separate charts for each level and link them with bookmarks; no drill-through filters needed.
BEnable hierarchy drill-down on the Region-Country-City chart and add City field to the Drill-through filters on the transaction page.
CUse slicers for Region, Country, and City and disable drill-down; add Region to Drill-through filters only.
DEnable drill-down on the chart but do not add any fields to Drill-through filters; rely on slicers on the transaction page.
Attempts:
2 left
💡 Hint

Think about how drill-down and drill-through filters work together.