<?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 Data limit feature is not working after deploying to PBIRS in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/Data-limit-feature-is-not-working-after-deploying-to-PBIRS/m-p/4275009#M38525</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; I implement new feature "Data limit" function to my pbi report which is 202409 version.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; It works fine in the power bi desktop, but not working&amp;nbsp;after deploying to PBIRS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; There is a table visual in my page and a column describing ranking.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; I set the Data limit to 200 and it only shows 200 records in PBI Desktop.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; But when i deploy to PBIRS, the Data limit does not work and the filter pane still shows Data limit to 200.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; does anyone have any idea?&lt;/P&gt;</description>
    <pubDate>Fri, 08 Nov 2024 05:19:57 GMT</pubDate>
    <dc:creator>Vanchy_Liao</dc:creator>
    <dc:date>2024-11-08T05:19:57Z</dc:date>
    <item>
      <title>Data limit feature is not working after deploying to PBIRS</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Data-limit-feature-is-not-working-after-deploying-to-PBIRS/m-p/4275009#M38525</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; I implement new feature "Data limit" function to my pbi report which is 202409 version.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; It works fine in the power bi desktop, but not working&amp;nbsp;after deploying to PBIRS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; There is a table visual in my page and a column describing ranking.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; I set the Data limit to 200 and it only shows 200 records in PBI Desktop.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; But when i deploy to PBIRS, the Data limit does not work and the filter pane still shows Data limit to 200.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; does anyone have any idea?&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2024 05:19:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Data-limit-feature-is-not-working-after-deploying-to-PBIRS/m-p/4275009#M38525</guid>
      <dc:creator>Vanchy_Liao</dc:creator>
      <dc:date>2024-11-08T05:19:57Z</dc:date>
    </item>
    <item>
      <title>Re: Data limit feature is not working after deploying to PBIRS</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Data-limit-feature-is-not-working-after-deploying-to-PBIRS/m-p/4277353#M38539</link>
      <description>&lt;P&gt;Sounds like it might be a bug. I'd suggested raising a support ticket with Microsoft to get this investigated.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2024 02:00:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Data-limit-feature-is-not-working-after-deploying-to-PBIRS/m-p/4277353#M38539</guid>
      <dc:creator>d_gosbell</dc:creator>
      <dc:date>2024-11-11T02:00:26Z</dc:date>
    </item>
    <item>
      <title>Re: Data limit feature is not working after deploying to PBIRS</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Data-limit-feature-is-not-working-after-deploying-to-PBIRS/m-p/4277697#M38546</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="322908" data-lia-user-login="Vanchy_Liao" class="lia-mention lia-mention-user"&gt;Vanchy_Liao&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the reply from&amp;nbsp;d_gosbell&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a workaround for your reference.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wrote an Index column in DAX, sorted by Sales from smallest to largest.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Index = RANKX(financials, [ Sales], , ASC, Dense)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then use that column to filter the table visualization.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Output in PBIRS web portal:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's also possible not to put the Index column in the visualization, just to filter the effect is the same, I put it in to show the effect more obviously.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I used the Calculated column for the above test and measure for the following.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;SUM = SUM(financials[ Sales])&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;IndexM = RANKX(ALL(financials), [SUM], , ASC, Dense)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Output in PBIRS web portal:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can also add the index column to the Transform data.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Yulia Xu&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post &lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider &lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2024 06:52:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Data-limit-feature-is-not-working-after-deploying-to-PBIRS/m-p/4277697#M38546</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-11T06:52:36Z</dc:date>
    </item>
    <item>
      <title>Re: Data limit feature is not working after deploying to PBIRS</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Data-limit-feature-is-not-working-after-deploying-to-PBIRS/m-p/4278065#M38550</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;i hope MS can fix this issue and thanks your solution.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2024 09:52:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Data-limit-feature-is-not-working-after-deploying-to-PBIRS/m-p/4278065#M38550</guid>
      <dc:creator>Vanchy_Liao</dc:creator>
      <dc:date>2024-11-11T09:52:48Z</dc:date>
    </item>
    <item>
      <title>Re: Data limit feature is not working after deploying to PBIRS</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Data-limit-feature-is-not-working-after-deploying-to-PBIRS/m-p/4292924#M38649</link>
      <description>&lt;P&gt;I confirm the bug, Power BI RS&amp;nbsp;&lt;SPAN&gt;Version&lt;/SPAN&gt;&lt;SPAN&gt;1.21.9032.4573&lt;/SPAN&gt;&lt;SPAN&gt;(September 2024).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So, September release introduced two new features, and one of them doesn't work.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2024 09:01:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Data-limit-feature-is-not-working-after-deploying-to-PBIRS/m-p/4292924#M38649</guid>
      <dc:creator>yioann</dc:creator>
      <dc:date>2024-11-20T09:01:27Z</dc:date>
    </item>
  </channel>
</rss>

