Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Try your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now

Reply
GVTioluxe
Helper I
Helper I

Cross Report drillthrough using a button action

I have a report page from which i would like to drill through to a page in another report in the same workspace. when i set up the cross report drill through steps it shows the destination when i click on a cell and right click and select Drill Through. However to make it easy for users we have created buttons with drill through action to drill through to the destination pages. How can cross report drill through be performed in this case as the destination page does not appear in the action when we select drill through.

 

secondly, we use conditional drill through using measures to take users to different report pages based on the field values selected, how can this be performed for cross report drill through?

1 REPLY 1
freginier
Solution Sage
Solution Sage

Native cross-report drillthrough only works via right-click. A button's "Drill through" action only lists pages in the same report, which is why the cross-report destination never shows up there - that's expected behaviour, not a setup mistake.

 

To drive cross-report navigation from a button (and to make it conditional on the selected value), use a Web URL action bound to a measure:

 

1) Build a measure that returns the destination report URL with URL query-string filters, e.g.:

Target URL = "https://app.powerbi.com/groups/<wsId>/reports/<reportId>/<ReportSection>?filter=Customer/CustomerId eq '" & SELECTEDVALUE(Customer[CustomerId]) & "'"

 

2) Add a Button, set Action = Web URL, and bind the URL to that measure via the fx (conditional formatting) button. Inside the measure you can branch with SWITCH/IF to send users to different report pages based on the selected fields - that covers your conditional drill-through case.

 

If you also want to keep the native right-click cross-report drillthrough: both reports must be in the same workspace, the tenant "Cross-report drillthrough" setting must be on, the destination page's drillthrough must have "Cross-report = On", and the drillthrough field must exist with identical table/column names in both models.

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.