<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Power BI Paginated Report with BigQuery DirectQuery – Filters not pushed down in Service</title>
    <link>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4851811#M288288</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/630752" target="_blank"&gt;@m_andel&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;We wanted to kindly follow up to&amp;nbsp;check if the solution provided by the user for the issue worked?&amp;nbsp;or let us know if you need any further assistance.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;
&lt;P&gt;Anjan Kumar Chippa&lt;/P&gt;</description>
    <pubDate>Thu, 16 Oct 2025 11:46:40 GMT</pubDate>
    <dc:creator>v-achippa</dc:creator>
    <dc:date>2025-10-16T11:46:40Z</dc:date>
    <item>
      <title>Power BI Paginated Report with BigQuery DirectQuery – Filters not pushed down</title>
      <link>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4840758#M287429</link>
      <description>&lt;P&gt;Hi everyone,&lt;BR /&gt;I’m currently facing the following scenario:&lt;/P&gt;&lt;P&gt;My data resides in BigQuery, with potentially quite a large volume (up to ~13M rows). To simplify external queries, I’ve created a view in BigQuery.&lt;/P&gt;&lt;P&gt;This data needs to be presented in a Power BI Paginated Report. As the connection between BigQuery and the Power BI Service, I’m using a Semantic Model with DirectQuery, hosted in the Power BI Service.&lt;/P&gt;&lt;P&gt;The Paginated Report uses parameters to restrict the 13M rows, with a date column being the most effective filter.&lt;/P&gt;&lt;P&gt;My assumption was that running a DAX query against the Semantic Model in the Paginated Report would push the parameterized query down to BigQuery. However, when checking the BigQuery logs, I noticed that the query is executed without the restrictive WHERE clause. It seems the Semantic Model queries BigQuery first and only applies the DAX filters afterwards.&lt;/P&gt;&lt;P&gt;Is there an alternative, more performant approach for this scenario?&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Oct 2025 15:29:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4840758#M287429</guid>
      <dc:creator>m_andel</dc:creator>
      <dc:date>2025-10-02T15:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Paginated Report with BigQuery DirectQuery – Filters not pushed down</title>
      <link>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4841169#M287459</link>
      <description>&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="630752" data-lia-user-login="m_andel" class="lia-mention lia-mention-user"&gt;m_andel&lt;/a&gt;&amp;nbsp;Hi!&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI data-start="434" data-end="519"&gt;
&lt;P data-start="436" data-end="519"&gt;&lt;FONT color="#000000"&gt;Paginated Reports query the semantic model, not the data source directly.&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="520" data-end="617"&gt;
&lt;P data-start="522" data-end="617"&gt;&lt;FONT color="#000000"&gt;Your DAX query + parameters in the Paginated Report first resolve against the semantic model.&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="618" data-end="883"&gt;
&lt;P data-start="620" data-end="883"&gt;&lt;FONT color="#000000"&gt;The BigQuery connector in Power BI has limited predicate pushdown capabilities, especially when queries originate as DAX. That means you often see “SELECT *”–style queries from the source, followed by filtering happening afterwards in the Power BI engine.&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="884" data-end="966"&gt;
&lt;P data-start="886" data-end="966"&gt;&lt;FONT color="#000000"&gt;This is why your BigQuery logs show queries without the expected WHERE clause.&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;WORKAROUNDS:&lt;/FONT&gt;&lt;/P&gt;
&lt;H4 data-start="1000" data-end="1067"&gt;&lt;FONT color="#000000"&gt;1. Parameterize the data source query, not just the report&lt;/FONT&gt;&lt;/H4&gt;
&lt;P data-start="1068" data-end="1124"&gt;&lt;FONT color="#000000"&gt;Instead of relying on DAX to push filters down, you can:&lt;/FONT&gt;&lt;/P&gt;
&lt;UL data-start="1125" data-end="1378"&gt;
&lt;LI data-start="1125" data-end="1231"&gt;
&lt;P data-start="1127" data-end="1231"&gt;&lt;FONT color="#000000"&gt;Create a BigQuery parameterized view or stored procedure that already expects the date filter.&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="1232" data-end="1378"&gt;
&lt;P data-start="1234" data-end="1378"&gt;&lt;FONT color="#000000"&gt;Point the Paginated Report directly at that query (using a shared dataset or dataset parameters), so the filter gets applied at the SQL layer.&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P data-start="1380" data-end="1435"&gt;&lt;FONT color="#000000"&gt;This avoids the semantic model doing the heavy lifting.&lt;/FONT&gt;&lt;/P&gt;
&lt;H4 data-start="1437" data-end="1496"&gt;&lt;FONT color="#000000"&gt;2. Use Paginated Report direct BigQuery connection&lt;/FONT&gt;&lt;/H4&gt;
&lt;P data-start="1497" data-end="1644"&gt;&lt;FONT color="#000000"&gt;Paginated Reports don’t have to go through a semantic model. You can connect them directly to BigQuery (via ODBC/JDBC or the Power BI connector).&lt;/FONT&gt;&lt;/P&gt;
&lt;UL data-start="1645" data-end="1811"&gt;
&lt;LI data-start="1645" data-end="1750"&gt;
&lt;P data-start="1647" data-end="1750"&gt;&lt;FONT color="#000000"&gt;Advantage: filters in the report parameters will get translated into the SQL query and pushed down.&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="1751" data-end="1811"&gt;
&lt;P data-start="1753" data-end="1811"&gt;&lt;FONT color="#000000"&gt;Downside: you lose reuse of the existing semantic model.&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P data-start="1813" data-end="1873"&gt;&lt;FONT color="#000000"&gt;If performance is critical, this is usually the best option.&lt;/FONT&gt;&lt;/P&gt;
&lt;H4 data-start="1875" data-end="1926"&gt;&lt;FONT color="#000000"&gt;3. Pre-aggregate or partition data in BigQuery&lt;/FONT&gt;&lt;/H4&gt;
&lt;UL data-start="1927" data-end="2170"&gt;
&lt;LI data-start="1927" data-end="2005"&gt;
&lt;P data-start="1929" data-end="2005"&gt;&lt;FONT color="#000000"&gt;If you must stay with the semantic model, restructure your BigQuery layer.&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="2006" data-end="2087"&gt;
&lt;P data-start="2008" data-end="2087"&gt;&lt;FONT color="#000000"&gt;Partition the view on the date column and only scan the necessary partitions.&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="2088" data-end="2170"&gt;
&lt;P data-start="2090" data-end="2170"&gt;&lt;FONT color="#000000"&gt;Materialize a smaller table or partitioned dataset that’s directly filterable.&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P data-start="2172" data-end="2255"&gt;&lt;FONT color="#000000"&gt;That way, even if Power BI pulls “too much” data, BigQuery itself is handling less.&lt;/FONT&gt;&lt;/P&gt;
&lt;H4 data-start="2257" data-end="2313"&gt;&lt;FONT color="#000000"&gt;4. Consider Import mode (if data volumes allow)&lt;/FONT&gt;&lt;/H4&gt;
&lt;UL data-start="2314" data-end="2652"&gt;
&lt;LI data-start="2314" data-end="2522"&gt;
&lt;P data-start="2316" data-end="2522"&gt;&lt;FONT color="#000000"&gt;If the data reduces significantly after filtering (e.g., 13M rows daily but only ~50k are relevant at report time), Import mode with scheduled refreshes might outperform DirectQuery for Paginated Reports.&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="2523" data-end="2576"&gt;
&lt;P data-start="2525" data-end="2576"&gt;&lt;FONT color="#000000"&gt;You can then apply filters in-memory efficiently.&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="2577" data-end="2652"&gt;
&lt;P data-start="2579" data-end="2652"&gt;&lt;FONT color="#000000"&gt;But this depends on whether freshness requirements allow a refresh delay.&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;H4 data-start="2654" data-end="2701"&gt;&lt;FONT color="#000000"&gt;5. Use Composite Models / Aggregations&lt;/FONT&gt;&lt;/H4&gt;
&lt;UL data-start="2702" data-end="2862"&gt;
&lt;LI data-start="2702" data-end="2783"&gt;
&lt;P data-start="2704" data-end="2783"&gt;&lt;FONT color="#000000"&gt;Define an aggregation table (pre-filtered or aggregated by date) in BigQuery.&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="2784" data-end="2862"&gt;
&lt;P data-start="2786" data-end="2862"&gt;&lt;FONT color="#000000"&gt;Let the semantic model map user queries to the aggregation where possible.&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;BBF&lt;/P&gt;
&lt;DIV style="font-family: Segoe UI, sans-serif; font-size: 14px; line-height: 1.2;"&gt;&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":light_bulb:"&gt;💡&lt;/span&gt; &lt;STRONG&gt;Did I answer your question?&lt;/STRONG&gt; Mark my post as a solution! &lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; Kudos are appreciated &lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;span class="lia-unicode-emoji" title=":fire:"&gt;🔥&lt;/span&gt; Proud to be a Super User!&lt;/STRONG&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;img /&gt; &lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Oct 2025 07:03:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4841169#M287459</guid>
      <dc:creator>BeaBF</dc:creator>
      <dc:date>2025-10-03T07:03:24Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Paginated Report with BigQuery DirectQuery – Filters not pushed down</title>
      <link>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4842844#M287565</link>
      <description>&lt;DIV class=""&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;
&lt;DIV id="bodyDisplay_11" class=""&gt;
&lt;DIV class=""&gt;
&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="630752" data-lia-user-login="m_andel" class="lia-mention lia-mention-user"&gt;m_andel&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you for reaching out to Microsoft Fabric Community.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="202311" data-lia-user-login="BeaBF" class="lia-mention lia-mention-user"&gt;BeaBF&lt;/a&gt;&amp;nbsp;for the prompt response.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;As we haven’t heard back from you, we wanted to kindly follow up to&amp;nbsp;check if the solution provided by the user for the issue worked?&amp;nbsp;or let us know if you need any further assistance.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;
&lt;P&gt;Anjan Kumar Chippa&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Mon, 06 Oct 2025 06:22:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4842844#M287565</guid>
      <dc:creator>v-achippa</dc:creator>
      <dc:date>2025-10-06T06:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Paginated Report with BigQuery DirectQuery – Filters not pushed down</title>
      <link>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4842923#M287575</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="202311" data-lia-user-login="BeaBF" class="lia-mention lia-mention-user"&gt;BeaBF&lt;/a&gt;,&amp;nbsp;&lt;BR /&gt;Thanks a lot for your response! I’ve got a few follow-up questions and comments regarding your points:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;That would require an ODBC connection, right? Unfortunately, I can’t use ODBC. The whole reason I’m connecting my Power BI reports directly to BigQuery is to avoid the need for a gateway server.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;I only created the semantic model for these reports.&lt;BR /&gt;This solution (using ODBC) would basically be the same as option 1, correct? In Power BI Report Builder, I can’t find a “Power BI connector” data source option. If there &lt;EM&gt;is&lt;/EM&gt; a way to connect directly to BigQuery from there, could you point me to where/how to set that up?&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;3./5. The data is already partitioned by day. But without the right SQL query being pushed down, that doesn’t really help me. Further pre-aggregations aren’t possible at the moment (or at least I’d need to discuss that with the project team first).&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;In this report, users can select larger time ranges, so I can’t really predict how many rows will be needed. Is there any way for a Dataflow to fetch missing data from the source dynamically, as needed? (As far as I know, that’s not possible.)&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Pre-aggregation might be an option if we revise the report’s purpose — that’s something I’ll need to clarify internally.&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;To sum it up:&lt;/P&gt;&lt;P&gt;I need to run a &lt;STRONG&gt;parameterized query&lt;/STRONG&gt; from a &lt;STRONG&gt;Paginated SSRS Report&lt;/STRONG&gt; against &lt;STRONG&gt;BigQuery data&lt;/STRONG&gt;, &lt;STRONG&gt;without using an ODBC connection&lt;/STRONG&gt; and &lt;STRONG&gt;without copying the data into a Power BI Dataflow&lt;/STRONG&gt; first.&lt;BR /&gt;From what I understand so far, it seems that there’s currently no way to achieve this.&lt;BR /&gt;&lt;BR /&gt;I appreciate any confirmation or workaround ideas from the community!&lt;/P&gt;</description>
      <pubDate>Mon, 06 Oct 2025 07:32:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4842923#M287575</guid>
      <dc:creator>m_andel</dc:creator>
      <dc:date>2025-10-06T07:32:38Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Paginated Report with BigQuery DirectQuery – Filters not pushed down</title>
      <link>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4848852#M288075</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="630752" data-lia-user-login="m_andel" class="lia-mention lia-mention-user"&gt;m_andel&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The behaviour here is expected because the paginated reports that connect to a power bi semantic model execute DAX queries against that model and the BigQuery connector currently has limited predicate pushdown support for DAX. That is why your BigQuery logs show full table scans without the WHERE clause.&lt;/P&gt;
&lt;P&gt;To make the filters execute in BigQuery without ODBC or dataflows, connect the Paginated Report directly to BigQuery using Power Query:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;In Report Builder, create a new dataset using Power Query.&lt;/LI&gt;
&lt;LI&gt;Use a parameterized native query via Value.NativeQuery and pass your date parameters so that BigQuery runs the filtered SQL directly.&lt;/LI&gt;
&lt;LI&gt;This runs fully cloud to cloud and no gateway or ODBC needed and the filter is pushed down to BigQuery.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;This is currently the only supported approach to make sure parameter filters are executed in BigQuery when using Paginated Reports.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;
&lt;P&gt;Anjan Kumar Chippa&lt;/P&gt;</description>
      <pubDate>Mon, 13 Oct 2025 10:15:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4848852#M288075</guid>
      <dc:creator>v-achippa</dc:creator>
      <dc:date>2025-10-13T10:15:16Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Paginated Report with BigQuery DirectQuery – Filters not pushed down</title>
      <link>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4851811#M288288</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/630752" target="_blank"&gt;@m_andel&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;We wanted to kindly follow up to&amp;nbsp;check if the solution provided by the user for the issue worked?&amp;nbsp;or let us know if you need any further assistance.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;
&lt;P&gt;Anjan Kumar Chippa&lt;/P&gt;</description>
      <pubDate>Thu, 16 Oct 2025 11:46:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4851811#M288288</guid>
      <dc:creator>v-achippa</dc:creator>
      <dc:date>2025-10-16T11:46:40Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Paginated Report with BigQuery DirectQuery – Filters not pushed down</title>
      <link>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4854728#M288565</link>
      <description>&lt;P&gt;I can't find Power Query as a ConnectionType&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Oct 2025 10:23:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4854728#M288565</guid>
      <dc:creator>m_andel</dc:creator>
      <dc:date>2025-10-21T10:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Paginated Report with BigQuery DirectQuery – Filters not pushed down</title>
      <link>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4860410#M289032</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="630752" data-lia-user-login="m_andel" class="lia-mention lia-mention-user"&gt;m_andel&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The Power Query connector option is only available in the new Power BI Report Builder, older or standalone report builder versions do not show Power Query as a data source type.&lt;/P&gt;
&lt;P&gt;Please download and install the latest Power BI Report Builder, after installing you will be able to see the Power Query option&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;
&lt;P&gt;Anjan Kumar Chippa&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 10:06:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4860410#M289032</guid>
      <dc:creator>v-achippa</dc:creator>
      <dc:date>2025-10-28T10:06:18Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Paginated Report with BigQuery DirectQuery – Filters not pushed down</title>
      <link>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4860416#M289034</link>
      <description>&lt;P&gt;You are talking about this version, right?&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.microsoft.com/en-us/download/details.aspx?id=105942" target="_blank"&gt;Download Microsoft® Power BI Report Builder from Official Microsoft Download Center&lt;/A&gt;&lt;/P&gt;&lt;P&gt;(&lt;SPAN&gt;15.7.1815.334)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I have already installed that version.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If I am not using the&amp;nbsp;correct app&amp;nbsp; - you have written "standalone report builder versions" - I am not aware that there is another one- please provide me a link.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 10:12:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4860416#M289034</guid>
      <dc:creator>m_andel</dc:creator>
      <dc:date>2025-10-28T10:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Paginated Report with BigQuery DirectQuery – Filters not pushed down</title>
      <link>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4860589#M289043</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="630752" data-lia-user-login="m_andel" class="lia-mention lia-mention-user"&gt;m_andel&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In your setup, Power BI’s &lt;STRONG data-start="26" data-end="46"&gt;Paginated Report&lt;/STRONG&gt; queries a &lt;STRONG data-start="57" data-end="75"&gt;Semantic Model&lt;/STRONG&gt; in DirectQuery mode, which in turn connects to &lt;STRONG data-start="123" data-end="135"&gt;BigQuery&lt;/STRONG&gt;. However, when DAX filters from the Paginated Report (like date parameters) are applied, they’re often processed at the &lt;STRONG data-start="256" data-end="280"&gt;Semantic Model layer&lt;/STRONG&gt;, not pushed down to BigQuery. This means BigQuery returns a large dataset (all 13M rows), and Power BI filters it afterward — causing poor performance. This behavior happens because &lt;STRONG data-start="463" data-end="489"&gt;DAX-to-SQL translation&lt;/STRONG&gt; doesn’t always propagate all filters efficiently through DirectQuery, especially for views or complex relationships. To improve performance, consider connecting the &lt;STRONG data-start="655" data-end="696"&gt;Paginated Report directly to BigQuery&lt;/STRONG&gt; via an ODBC connection or using a &lt;STRONG data-start="731" data-end="785"&gt;shared dataset designed specifically for reporting&lt;/STRONG&gt;, where parameters are embedded directly in SQL or M queries. Alternatively, if you must keep the Semantic Model, you can create &lt;STRONG data-start="914" data-end="947"&gt;measures or calculated tables&lt;/STRONG&gt; that include the date filter logic inside the model itself, or use &lt;STRONG data-start="1015" data-end="1031"&gt;Aggregations&lt;/STRONG&gt; to minimize data volume. The goal is to ensure that filtering happens at the &lt;STRONG data-start="1109" data-end="1136"&gt;source level (BigQuery)&lt;/STRONG&gt; rather than in Power BI’s intermediate layers.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 12:39:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4860589#M289043</guid>
      <dc:creator>Poojara_D12</dc:creator>
      <dc:date>2025-10-28T12:39:28Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Paginated Report with BigQuery DirectQuery – Filters not pushed down</title>
      <link>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4860626#M289047</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="837199" data-lia-user-login="Poojara_D12" class="lia-mention lia-mention-user"&gt;Poojara_D12&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;thanks for your answer.&lt;/P&gt;&lt;P&gt;I don't need to keep the semantic model - I created it solely for this report. (Under the assumption that the filters would be pushed down to BigQuery).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can't use an ODBC connection.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I could create a shared dataset specifically for this report - but when I get this right there is currently no way to query the Big Query directly with sql (including filtering data to the amount i only need for the report) .&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 13:12:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4860626#M289047</guid>
      <dc:creator>m_andel</dc:creator>
      <dc:date>2025-10-28T13:12:44Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Paginated Report with BigQuery DirectQuery – Filters not pushed down</title>
      <link>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4860634#M289050</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="630752" data-lia-user-login="m_andel" class="lia-mention lia-mention-user"&gt;m_andel&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since your only goal in creating the Semantic Model was to connect Paginated Reports to BigQuery — and ODBC isn’t an option, the challenge is that Power BI currently doesn’t support &lt;STRONG data-start="183" data-end="225"&gt;direct SQL-style parameterized queries&lt;/STRONG&gt; against BigQuery from within Paginated Reports. When you use a Semantic Model in DirectQuery mode, Power BI’s internal DAX translation layer limits how effectively filters are pushed down, which is why you see all 13M rows being retrieved before filtering. The most practical alternative is to &lt;STRONG data-start="520" data-end="611"&gt;connect the Paginated Report directly to BigQuery using the built-in BigQuery connector&lt;/STRONG&gt; (available under the “Google BigQuery” data source in Report Builder) rather than going through a Semantic Model. This lets you write &lt;STRONG data-start="746" data-end="768"&gt;native SQL queries&lt;/STRONG&gt; with report parameters directly embedded in the query (for example, filtering by date before execution), ensuring that only the necessary data is returned. If that connector isn’t available in your environment, you could also build a &lt;STRONG data-start="1003" data-end="1048"&gt;Power BI dataflow or Fabric data pipeline&lt;/STRONG&gt; to pre-filter and materialize a smaller table or view in BigQuery, then point your Paginated Report to that optimized dataset. The key is to move filtering and shaping logic as close to the BigQuery source as possible to minimize data transfer and improve performance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 13:20:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4860634#M289050</guid>
      <dc:creator>Poojara_D12</dc:creator>
      <dc:date>2025-10-28T13:20:13Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Paginated Report with BigQuery DirectQuery – Filters not pushed down</title>
      <link>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4860711#M289055</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="837199" data-lia-user-login="Poojara_D12" class="lia-mention lia-mention-user"&gt;Poojara_D12&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I finally found out how to Query Google BigQuery:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I created a datasource with all the columns from my BigQuery View, but when I try to use this datasource in a DataSet I can not enter a query. And I cannot modify this datasource after i saved it. (That's not very comfortable.)&lt;/P&gt;&lt;P&gt;What am I missing here?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 14:40:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4860711#M289055</guid>
      <dc:creator>m_andel</dc:creator>
      <dc:date>2025-10-28T14:40:13Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Paginated Report with BigQuery DirectQuery – Filters not pushed down</title>
      <link>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4865651#M289472</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="630752" data-lia-user-login="m_andel" class="lia-mention lia-mention-user"&gt;m_andel&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You are not missing anything, that is the current design. Power Query handles all query logic internally so the sql text box in the dataset properties is disabled.&lt;BR /&gt;So to customize your query or add parameters, edit it directly inside the Power Query editor using Value.NativeQuery.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Inside the M code use a parameterized native query like this:&lt;/P&gt;
&lt;P&gt;let&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Source = Value.NativeQuery(&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BigQuery.Database(null),&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "SELECT * FROM ENTER_NAME WHERE Date &amp;gt;= @StartDate AND Date &amp;lt;= @EndDate",&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [StartDate = Parameters!StartDate.Value, EndDate = Parameters!EndDate.Value]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;
&lt;P&gt;in&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Source&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Save and close the power query the dataset will now return filtered data directly from BigQuery.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;
&lt;P&gt;Anjan Kumar Chippa&lt;/P&gt;</description>
      <pubDate>Tue, 04 Nov 2025 06:39:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4865651#M289472</guid>
      <dc:creator>v-achippa</dc:creator>
      <dc:date>2025-11-04T06:39:41Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Paginated Report with BigQuery DirectQuery – Filters not pushed down</title>
      <link>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4870720#M289888</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="882907" data-lia-user-login="v-achippa" class="lia-mention lia-mention-user"&gt;v-achippa&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can now load data. My last issue is the connection to powerbi. Is it possible to use a google service account with a key file? I have found no option to configure the connection this way.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Nov 2025 08:43:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4870720#M289888</guid>
      <dc:creator>m_andel</dc:creator>
      <dc:date>2025-11-10T08:43:00Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Paginated Report with BigQuery DirectQuery – Filters not pushed down</title>
      <link>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4871806#M289986</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="630752" data-lia-user-login="m_andel" class="lia-mention lia-mention-user"&gt;m_andel&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Currently using a google service account key file is not supported in Power Query based connections within Power BI Report Builder or the Power BI Service. Only OAuth authentication with a user account is supported, so please use OAuth sign-in for now.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;
&lt;P&gt;Anjan Kumar Chippa&lt;/P&gt;</description>
      <pubDate>Tue, 11 Nov 2025 08:30:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4871806#M289986</guid>
      <dc:creator>v-achippa</dc:creator>
      <dc:date>2025-11-11T08:30:34Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Paginated Report with BigQuery DirectQuery – Filters not pushed down</title>
      <link>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4877456#M290393</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/630752" target="_blank" rel="noopener"&gt;@m_andel&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;As we haven’t heard back from you we wanted to kindly follow up to&amp;nbsp;check if the solution I have provided for the issue worked?&amp;nbsp;or let us know if you need any further assistance.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;
&lt;P&gt;Anjan Kumar Chippa&lt;/P&gt;</description>
      <pubDate>Mon, 17 Nov 2025 11:58:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4877456#M290393</guid>
      <dc:creator>v-achippa</dc:creator>
      <dc:date>2025-11-17T11:58:19Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Paginated Report with BigQuery DirectQuery – Filters not pushed down</title>
      <link>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4877478#M290394</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="882907" data-lia-user-login="v-achippa" class="lia-mention lia-mention-user"&gt;v-achippa&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;unfortunately there seems to be no solution to realize paginated reports the way we need to. Our next step would be to create such reports in Power BI Desktop.&amp;nbsp;&lt;/P&gt;&lt;P&gt;As I understand there it is possible to query the BigQuery and use a service account for authentication.&amp;nbsp;&lt;/P&gt;&lt;P&gt;And I suppose it is possible to design reports that feel just like paginated reports?&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Martin&lt;/P&gt;</description>
      <pubDate>Mon, 17 Nov 2025 12:05:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4877478#M290394</guid>
      <dc:creator>m_andel</dc:creator>
      <dc:date>2025-11-17T12:05:39Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Paginated Report with BigQuery DirectQuery – Filters not pushed down</title>
      <link>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4878314#M290473</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="630752" data-lia-user-login="m_andel" class="lia-mention lia-mention-user"&gt;m_andel&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes power bi desktop can connect to BigQuery using a service account, so that part will work.&lt;/P&gt;
&lt;P&gt;However, power bi desktop is not a full replacement for Paginated Reports. You can create reports that look similar but desktop is designed for interactive visuals and does not support the same pixel perfect pagination, repeating groups and print ready layout capabilities that Paginated Reports provides.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;
&lt;P&gt;Anjan Kumar Chippa&lt;/P&gt;</description>
      <pubDate>Tue, 18 Nov 2025 07:17:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4878314#M290473</guid>
      <dc:creator>v-achippa</dc:creator>
      <dc:date>2025-11-18T07:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Paginated Report with BigQuery DirectQuery – Filters not pushed down</title>
      <link>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4878319#M290474</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="882907" data-lia-user-login="v-achippa" class="lia-mention lia-mention-user"&gt;v-achippa&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;thanks for the info. I will see how this fits for our purposes, in fact our reports are not meant for being printed out. Maybe i will miss the repeating groups.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you know, if authentication on BigQuery with service accounts in the Power BI report builder will be possible in the near future?&lt;/P&gt;</description>
      <pubDate>Tue, 18 Nov 2025 07:24:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/Power-BI-Paginated-Report-with-BigQuery-DirectQuery-Filters-not/m-p/4878319#M290474</guid>
      <dc:creator>m_andel</dc:creator>
      <dc:date>2025-11-18T07:24:28Z</dc:date>
    </item>
  </channel>
</rss>

