Forum Discussion
Anonymous
7 years agoNot applicable
URLs Power Bi Desktop
Hi Experts How do you do the following " Say you're working in Power BI Desktop. You want to create a report that has links to other Power BI reports, but you want to show only some of the i...
- 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
v-yulgu-msft
7 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
Anonymous
7 years agoNot applicable
Yuiliana Work prefectly, many thanks. going to post another follow up question.
- Anonymous7 years agoNot applicable
part 2. to the above question... link https://community.powerbi.com/t5/Desktop/add-an-additional-filter-criteria-to-selction/m-p/717659#M346352