Forum Discussion
Paginated Report - Parameters stop refreshing after returning from linked reports
- 3 months ago
Hi undue_shortage,
This behavior is expected in Power BI Paginated Reports when using cascading parameters. Once you navigate out to a linked report and return, the parameter state is cached, so dependent dropdowns don’t refresh as they would on a fresh load.
A few approaches you can consider:
Independent parameters: Instead of relying on auto‑cascading, bind parameters manually in your query text so they refresh independently.
Navigation links: Use report actions that pass parameters explicitly and reload the report, rather than relying on the browser back button. This forces a fresh parameter evaluation.
Shared datasets: If multiple reports use the same parameter logic, a shared dataset with independent parameters can reduce caching issues.
User guidance: If redesign isn’t possible, advise users to re‑open the report from the app navigation instead of using the back button.
This isn’t a bug but a limitation of how paginated reports handle cascading parameters and navigation. The most reliable workaround is to design navigation links that reload the report with parameters, rather than depending on the back button.
Hi undue_shortage,
This behavior is expected in Power BI Paginated Reports when using cascading parameters. Once you navigate out to a linked report and return, the parameter state is cached, so dependent dropdowns don’t refresh as they would on a fresh load.
A few approaches you can consider:
Independent parameters: Instead of relying on auto‑cascading, bind parameters manually in your query text so they refresh independently.
Navigation links: Use report actions that pass parameters explicitly and reload the report, rather than relying on the browser back button. This forces a fresh parameter evaluation.
Shared datasets: If multiple reports use the same parameter logic, a shared dataset with independent parameters can reduce caching issues.
User guidance: If redesign isn’t possible, advise users to re‑open the report from the app navigation instead of using the back button.
This isn’t a bug but a limitation of how paginated reports handle cascading parameters and navigation. The most reliable workaround is to design navigation links that reload the report with parameters, rather than depending on the back button.
- undue_shortage3 months agoFrequent Visitor
This is very helpful, thank you! I've currently been using the second solution, building a custom back button that passes parameters to the base report, which has been working well. However, is there any option to hide the built-in back button from the linked report?