Complete the code to enable drill-down on a visual by turning on the {{BLANK_1}} feature.
VisualInteractions.DrillDown = [1]Turning on true enables drill-down interaction on the visual.
Complete the DAX expression to create a drill-through filter that passes the selected {{BLANK_1}} value.
FILTER(ALL('Sales'), 'Sales'[[1]] = SELECTEDVALUE('Summary'[[1]]))
The drill-through filter uses the Product column to pass the selected product value to the target page.
Fix the error in the DAX measure to correctly calculate total sales for the drill-through page using {{BLANK_1}}.
TotalSales = CALCULATE(SUM('Sales'[Amount]), [1])
The correct filter uses FILTER(ALL('Sales'), ...) to apply the drill-through filter context properly.
Fill both blanks to create a drill-through button that navigates to the {{BLANK_1}} page and passes the {{BLANK_2}} filter.
Button.OnClick = Navigate('[1]', { '[2]': SELECTEDVALUE('Table'[[2]]) })
The button navigates to the Details page and passes the Product filter for drill-through.
Fill all three blanks to create a drill-down hierarchy with levels {{BLANK_1}}, {{BLANK_2}}, and {{BLANK_3}}.
Hierarchy = { '[1]', '[2]', '[3]' }The drill-down hierarchy is set as Country > City > Subcategory for detailed analysis.