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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Drill through to another report

Team,
I have a report page with drill through enabled for table when I right click one column it will drill through to four different pages in same report. Does there any way to drill through to different reports instead of pages ?

Thanks
Vivek
5 REPLIES 5
jsh121988
Employee
Employee

This is a difficult problem that has a limited solution. I've accomplished this by utilizing Query String filters and generating a dynamic web url from a measure. The problem is you can only use 'equals', so the passthrough filters have to be a bit static. https://docs.microsoft.com/en-us/power-bi/service-url-filters

 

Set the measure data category as web url, and add the link to your matrix/table.

 

 

_dmLink = // Measure
VAR sReportUrl = "https://msit.powerbi.com/groups/04c8...3adce/reports/04c8...3adce/ReportSection" VAR sColumn1 = IF(HASONEVALUE(SomeTable[SomeColumn]), "Query1/Column1 eq '" & MIN(SomeTable[SomeColumn]) & "' ", "") VAR sLast6Weeks = " and Query1/Date_InLast6CalWeeks eq 1" RETURN sReportUrl
& "?filter=" & sColumn1 & sLast6Weeks

Outputs something like this:

 

 

https://msit.powerbi.com/groups/04c8...3adce/reports/04c8...3adce/ReportSection?filter=Query1/Column1 eq 'SomeValue' and Query1/Date_InLast6CalWeeks eq 1

 

 

Anonymous
Not applicable

THanks JSH. Can we have pass existing report level filters to external report without adding to query ?

 

Thanks

Vivek

Anonymous
Not applicable

Thanks JSH. It worked fine by passing selected value to url string to open external report. 

But this works for URL as separate column next to my measure as another column. Is there any way to show measure as hyperlink and when i click  i want to go to a hyperlink to open a external report?

 

Thanks

Vivek

 

 

Hi Vivek,

 

I don't know if that is possible. I just enabled the Web Url icon for the link, and placed it to the right of the measure.

 

Thanks,

Jon

Greg_Deckler
Super User
Super User

Right now you cannot do that but I'm pretty sure that there are Ideas on it and I thought that perhaps it was either Planned or Started but I may be incorrect.


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.