Forum Discussion
Paginated Report URL using MultiSelect Power BI Slicer
- 5 years ago
Hi,
That post is still covering Power BI Desktop to Paginated Report. You need to create a measure to get all the filter value and frame the URL like below.
Things to do in the PBI reoprt
1.Create a measure to export
Excel Export URL =VAR __Division =IF (NOT ( ISFILTERED ( Sites[Division] ) ),BLANK (),"&rp:Division="& CONCATENATEX ( ALLSELECTED ( Sites[Division] ), Sites[Division] , "&rp:Division=" ))VAR __Site =IF (NOT ( ISFILTERED ( Sites[Site] ) ),BLANK (),"&rp:Site="& CONCATENATEX ( ALLSELECTED ( Sites[Site] ), Sites[Site], "&rp:Site=" ))VAR __baseURL = "https://app.powerbi.com/groups/e29303d3-a2bd-4e1f-b6cb-a85be2cbf72f/rdlreports/5670f37c-f056-4cc5-8c...?" &__Division&__SiteVAR __FinalURL = CONCATENATE(__baseURL, "&rdl:format=EXCELOPENXML")RETURN__FinalURLThanksHari
Hi,
Actually in above post he was trying to pass parameters from paginated report to Power BI but in my case i want to do it vice versa that is power bi filters to paramters of paginated report.
Thanks,
Pravin
Hi,
That post is still covering Power BI Desktop to Paginated Report. You need to create a measure to get all the filter value and frame the URL like below.
Things to do in the PBI reoprt
1.Create a measure to export
- Anonymous5 years agoNot applicable
That's Great.
It is working as expected. Now my only concern is , Is there any limitation on URL lenght and if yes, what is the limitation and How to hide Parameter section using URL.
I have tried rdl:parameterPanel=hidden.
Thanks,
Pravin