Forum Discussion
URLs Power Bi Desktop
- 7 years ago
Hi Anonymous ,
It can be achieved by measures.
Report URL = "https://msit.powerbi.com/groups/me/reports/xxxxxxx/ReportSection" Report Filter = IF(ISFILTERED(Table3[Column1]),[Report URL]&"?filter=" & "Output/Employee" & " eq " &"'" & SELECTEDVALUE(Table3[Column1]) & "'",[Report URL])
Replace the report URL, table name, column name with your own values in above measure formulas.
Best regards,
Yuliana Gu
Hi Anonymous ,
Yes. Firstly, you should generate a new URL by appending query string parameter to it to filter a specific report which has been published to service. Copy that URL into a table, set its data category to "Web URL" so that it will be dispalyed as a link in table visual. Alternatively, you can directly insert a Textbox to show that URL.
Publishing and sharing this new report in Power BI Service, end users can jump to the related reports by clicking the links.
Best regards,
Yuliana Gu
- Anonymous7 years agoNot applicable
Yuilian Gu, firstly thanks for the excellent feedback as always. here is a silly question. Can you make the url dynamic show - say if i filtered on a slicer that change is reflected in the URL i.e. we have a updated URL to reflect the action i have just preformed..
- v-yulgu-msft7 years agoMicrosoft Employee
Hi Anonymous ,
It can be achieved by measures.
Report URL = "https://msit.powerbi.com/groups/me/reports/xxxxxxx/ReportSection" Report Filter = IF(ISFILTERED(Table3[Column1]),[Report URL]&"?filter=" & "Output/Employee" & " eq " &"'" & SELECTEDVALUE(Table3[Column1]) & "'",[Report URL])
Replace the report URL, table name, column name with your own values in above measure formulas.
Best regards,
Yuliana Gu
- Anonymous7 years agoNot applicable
Yuiliana Work prefectly, many thanks. going to post another follow up question.