<?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: Printing Wide Matrices and First-Page Header in Power BI Report Builder in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/Printing-Wide-Matrices-and-First-Page-Header-in-Power-BI-Report/m-p/4838435#M42019</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="777086" data-lia-user-login="prabavathym" class="lia-mention lia-mention-user"&gt;prabavathym&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just following up to see if the Response provided by community members were helpful in addressing the issue.&lt;/P&gt;
&lt;P&gt;If one of the responses helped resolve your query, please consider marking it as the Accepted Solution. Feel free to reach out if you need any further clarification or assistance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Prasanna Kumar&lt;/P&gt;</description>
    <pubDate>Tue, 30 Sep 2025 02:19:13 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2025-09-30T02:19:13Z</dc:date>
    <item>
      <title>Printing Wide Matrices and First-Page Header in Power BI Report Builder</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Printing-Wide-Matrices-and-First-Page-Header-in-Power-BI-Report/m-p/4832321#M41961</link>
      <description>&lt;P&gt;Hi Community,&lt;/P&gt;&lt;P&gt;I’m working in &lt;STRONG&gt;Power BI Report Builder&lt;/STRONG&gt; and facing two issues when printing/exporting to &lt;STRONG&gt;PDF (A4)&lt;/STRONG&gt;:&lt;/P&gt;&lt;H3&gt;1 Matrix Pagination&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;My table has &lt;STRONG&gt;20 rows × 40 columns&lt;/STRONG&gt;, split across 2 pages with a page break.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Currently, PDF prints: first 10 rows × first 20 columns, then next 20 columns × first 10 rows, and so on.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Expected:&lt;/STRONG&gt; print all rows for the first 20 columns, then next 20 columns with all rows (like Tableau).&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H3&gt;2 Header on First Page Only&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;I want the header only on the first page.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Using header properties works in preview, but in PDF it still shows on all pages.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Any suggestions to achieve &lt;STRONG&gt;Tableau-like printing behavior&lt;/STRONG&gt; in Power BI Report Builder?&lt;/P&gt;</description>
      <pubDate>Mon, 22 Sep 2025 12:33:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Printing-Wide-Matrices-and-First-Page-Header-in-Power-BI-Report/m-p/4832321#M41961</guid>
      <dc:creator>prabavathym</dc:creator>
      <dc:date>2025-09-22T12:33:25Z</dc:date>
    </item>
    <item>
      <title>Re: Printing Wide Matrices and First-Page Header in Power BI Report Builder</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Printing-Wide-Matrices-and-First-Page-Header-in-Power-BI-Report/m-p/4832412#M41962</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="777086" data-lia-user-login="prabavathym" class="lia-mention lia-mention-user"&gt;prabavathym&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Power BI Report Builder uses a "hard page" PDF renderer. When a wide matrix can’t fit, the renderer slices it into chunks based on page width and height. By default, the PDF will step through chunks in a fixed order (left to right, then down). There isn’t a built-in "print all rows for the first N columns, then move to the next N columns" toggle like Tableau. To get Tableau-style output, you force the page breaks yourself by grouping the columns into "bands" (e.g., 20 columns per band) and adding a page break between those bands. For the header, the safest approach is to either hide the page-header contents after page 1, or move the "header" into the report body so it appears only on page 1.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Quick solution&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1) Matrix pagination like Tableau (all rows for first 20 columns, then next 20)&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;In your dataset, add a stable sort key for your dynamic columns (e.g., MonthStart, FieldOrder, etc.). Create two computed fields:&lt;UL&gt;&lt;LI&gt;ColIndex = row number over your column sort&lt;/LI&gt;&lt;LI&gt;ColBand = 1 + (ColIndex - 1) / 20 (integer division)&lt;/LI&gt;&lt;/UL&gt;Example (T-SQL):&lt;PRE&gt;SELECT
  ...,
  ROW_NUMBER() OVER (ORDER BY YourColumnSort) AS ColIndex,
  1 + (ROW_NUMBER() OVER (ORDER BY YourColumnSort) - 1) / 20 AS ColBand
FROM ...&lt;/PRE&gt;&lt;/LI&gt;&lt;LI&gt;In the &lt;STRONG&gt;Column Groups&lt;/STRONG&gt; pane, add a &lt;STRONG&gt;parent column group&lt;/STRONG&gt; above your existing dynamic column group, grouped on =Fields!ColBand.Value.&lt;/LI&gt;&lt;LI&gt;Select that parent column group and set a &lt;STRONG&gt;Page break&lt;/STRONG&gt; "Between each instance of a group." Optional: set &lt;STRONG&gt;ResetPageNumber&lt;/STRONG&gt; = True if you want each band to start at page 1.&lt;/LI&gt;&lt;LI&gt;Keep your current column group inside the band. Set header repetition as needed so row/column headers repeat across pages.&lt;BR /&gt;Docs: &lt;A href="https://learn.microsoft.com/sql/reporting-services/report-design/add-a-page-break-report-builder-and-ssrs" target="_blank" rel="noopener"&gt;Add page breaks (group instances)&lt;/A&gt;, &lt;A href="https://learn.microsoft.com/sql/reporting-services/report-design/display-row-and-column-headers-on-multiple-pages-report-builder-and-ssrs" target="_blank" rel="noopener"&gt;Repeat row/column headers&lt;/A&gt;, &lt;A href="https://learn.microsoft.com/sql/reporting-services/report-design/controlling-row-and-column-headings-report-builder-and-ssrs" target="_blank" rel="noopener"&gt;Renderer support&lt;/A&gt;.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;2) Show the page header only on the first page&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Option A (fast):&lt;/STRONG&gt; Keep the Page Header. Put all header content inside a rectangle. Set the rectangle’s &lt;STRONG&gt;Hidden&lt;/STRONG&gt; expression to:&lt;PRE&gt;=IIF(Globals!PageNumber &amp;gt; 1, True, False)&lt;/PRE&gt;This hides the contents after page 1. Note: the header space still reserves height on later pages (empty band).&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Option B (cleanest layout):&lt;/STRONG&gt; Remove the Page Header. Add a rectangle at the very top of the report &lt;STRONG&gt;body&lt;/STRONG&gt; that contains your "header" content. Put a &lt;STRONG&gt;Page break&lt;/STRONG&gt; after that rectangle so the main matrix starts on page 2. This way the header appears only on page 1 and no extra header space is reserved on later pages.&lt;BR /&gt;Docs: &lt;A href="https://learn.microsoft.com/sql/reporting-services/report-design/hide-a-page-header-or-footer-on-the-first-or-last-page-report-builder-and-ssrs" target="_blank" rel="noopener"&gt;Hide header on first/last page&lt;/A&gt;. Example using Globals!PageNumber: &lt;A href="https://stackoverflow.com/questions/16306092/ssrs-report-builder-only-show-header-on-first-page-with-page-numbers" target="_blank" rel="noopener"&gt;Stack Overflow example&lt;/A&gt;.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;If you found this helpful, consider giving some Kudos. If I answered your question or solved your problem, please mark this post as the solution.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Sep 2025 13:42:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Printing-Wide-Matrices-and-First-Page-Header-in-Power-BI-Report/m-p/4832412#M41962</guid>
      <dc:creator>tayloramy</dc:creator>
      <dc:date>2025-09-22T13:42:22Z</dc:date>
    </item>
    <item>
      <title>Re: Printing Wide Matrices and First-Page Header in Power BI Report Builder</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Printing-Wide-Matrices-and-First-Page-Header-in-Power-BI-Report/m-p/4833930#M41974</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="777086" data-lia-user-login="prabavathym" class="lia-mention lia-mention-user"&gt;prabavathym&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to the Microsoft Fabric Forum Community, and special thanks to&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1340679" data-lia-user-login="tayloramy" class="lia-mention lia-mention-user"&gt;tayloramy&lt;/a&gt;&amp;nbsp; for prompt and helpful responses.&lt;/P&gt;
&lt;P&gt;Just following up to see if the Response provided by community members were helpful in addressing the issue.&lt;/P&gt;
&lt;P&gt;If one of the responses helped resolve your query, please consider marking it as the Accepted Solution. Feel free to reach out if you need any further clarification or assistance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Prasanna Kumar&lt;/P&gt;</description>
      <pubDate>Wed, 24 Sep 2025 04:50:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Printing-Wide-Matrices-and-First-Page-Header-in-Power-BI-Report/m-p/4833930#M41974</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-09-24T04:50:44Z</dc:date>
    </item>
    <item>
      <title>Re: Printing Wide Matrices and First-Page Header in Power BI Report Builder</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Printing-Wide-Matrices-and-First-Page-Header-in-Power-BI-Report/m-p/4836095#M42001</link>
      <description>&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;" lang="en-IN"&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="777086" data-lia-user-login="prabavathym" class="lia-mention lia-mention-user"&gt;prabavathym&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;" lang="en-IN"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;" lang="en-IN"&gt;Just following up to see if the Response provided was helpful in resolving your issue. Please feel free to let us know if you need any further assistance.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;" lang="en-IN"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;" lang="en-IN"&gt;Best regards,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;" lang="en-IN"&gt;Prasanna Kumar&lt;/P&gt;</description>
      <pubDate>Fri, 26 Sep 2025 07:43:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Printing-Wide-Matrices-and-First-Page-Header-in-Power-BI-Report/m-p/4836095#M42001</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-09-26T07:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: Printing Wide Matrices and First-Page Header in Power BI Report Builder</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Printing-Wide-Matrices-and-First-Page-Header-in-Power-BI-Report/m-p/4838435#M42019</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="777086" data-lia-user-login="prabavathym" class="lia-mention lia-mention-user"&gt;prabavathym&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just following up to see if the Response provided by community members were helpful in addressing the issue.&lt;/P&gt;
&lt;P&gt;If one of the responses helped resolve your query, please consider marking it as the Accepted Solution. Feel free to reach out if you need any further clarification or assistance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Prasanna Kumar&lt;/P&gt;</description>
      <pubDate>Tue, 30 Sep 2025 02:19:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Printing-Wide-Matrices-and-First-Page-Header-in-Power-BI-Report/m-p/4838435#M42019</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-09-30T02:19:13Z</dc:date>
    </item>
  </channel>
</rss>

