Forum Discussion
Aartibhilare
1 year agoHelper III
Drop down for the subreport
Hi team,
I need to include 10 subreports within a single report. Is there a way to implement a dropdown to select between them?
If so, how can we achieve this?
From what I know, we can embed all the reports and set visibility conditions. However, these reports need to work with the access restrictions defined in our SQL database and queries. What would be the most straightforward approach to manage this?
Hi Aartibhilare ,
Dropdown for Subreports in Power BI Report ServerSolution: Use a Parameter to Control Visibility
- Create a Parameter (ReportSelector) → List subreport names.
- Insert 10 Subreports → Place all in the main report.
- Set Visibility for Each Subreport
- Use: =IIF(Parameters!ReportSelector.Value = "Report1", False, True)
- Repeat for each subreport.
-
Access Control:
- Filter available reports based on user roles in SQL.
2 Replies
- rohit1991Super User
Hi Aartibhilare ,
Dropdown for Subreports in Power BI Report ServerSolution: Use a Parameter to Control Visibility
- Create a Parameter (ReportSelector) → List subreport names.
- Insert 10 Subreports → Place all in the main report.
- Set Visibility for Each Subreport
- Use: =IIF(Parameters!ReportSelector.Value = "Report1", False, True)
- Repeat for each subreport.
-
Access Control:
- Filter available reports based on user roles in SQL.
- AartibhilareHelper III