Forum Discussion
Mounika
10 years agoRegular Visitor
Hiding Report Level filters in the Iframe
We published reports in power bi service. We have requirement to show only specific reports to user.So we created a table and configured user, reports to be shown.We need to display those reports in ...
- 9 years ago
In your case, try to append below string, no $ before filterPaneEnabled. Based on my test, it works.
&filterPaneEnabled=false&$filter=Query2/Name eq 'Type2'
Eric_Zhang
Microsoft Employee
10 years ago
You can hide the filter panel by appending a parameter to the embed url, eg
https://msit.powerbi.com/reportEmbed?reportId=1ac729a0-1f64-4b32-a32e-d5xxxxxxx019&filterPaneEnabled=false
- Mounika10 years agoRegular Visitor
I need to pass a parameter to powerbi service as well as this filter how can we achieve this? Also I need to hide only Report level filters by doing this will the visualization filter will also be hidden?
Ex: Appending parameters to href parameter
href + "&$filterPaneEnabled=false&$filter=Query2/Name eq 'Type2'
the above is not working can you suggest proper way ? Also solution for hiding only report level filters
- Eric_Zhang9 years ago
Microsoft Employee
So far, AFAIK, there's no way to hide only the report level filter, you can hide the whole filter panel or non.
- Mounika9 years agoRegular VisitorOk fine. Then can we pass multiple parameters to power bi service ?