Forum Discussion
Paginated report with multi value filter data load service error
- 2 months ago
Hi Lancy_vini
The available documentation for Paginated Reports provides guidance on the overall workflow, including report authoring, deployment, data connectivity and rendering scenarios.
To help visualize the process, please refer to the official documentation below :
Create and Use the Paginated Report Visual - Power BI | Microsoft Learn
What Are Paginated Reports in Power Bi? - Power BI | Microsoft Learn
Hello Lancy_vini
Please check the below point
Issue:
- Power BI does not always filter data first in Redshift
- System scans large data (millions/billions rows)
- Data is processed before filtering
- Causes data load service error
Solution
- Push filter to database (use SQL / stored procedure)
- Avoid large multi-value IN filters
- Reduce data at source (use views / pre-filters)
Thank you
- Lancy_vini3 months agoRegular Visitor
I am trying to understand the architectural flow of powerbi paginated report with direct query model and multivalue parameter for my better understanding
- v-aatheeque2 months agoCommunity Support
Hi Lancy_vini
The architectural flow in this scenario is:
Paginated Report → Semantic Model (DirectQuery) → DAX Query Engine → DirectQuery Translation → Amazon Redshift.
It highlights how multi-value parameters are passed into the semantic model, converted into DAX, and then translated into SQL for Redshift. The caution note at the bottom reminds that large intermediate datasets may still be processed before filters are fully applied, depending on query folding and model complexity.- Lancy_vini2 months agoRegular Visitor
Hi v-aatheeque if the data is filtered at redshift/ sql level then why my report is failing with 1M error .if I remove the multivalue filter the same report works fine . With parameters my results are just 2000 rows .but I get error saying that data exceeded 1million rows .