<?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: Ranking with RANKX, FILTER, ALL &amp;amp; CALCULATE not working in Direct Query mode in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ranking-with-RANKX-FILTER-ALL-amp-CALCULATE-not-working-in/m-p/4665451#M178679</link>
    <description>&lt;P&gt;you can materialize the measure values per [last_program_size]&amp;nbsp; (i guess that is your ranking target) into a table variable and then run RANK over that table.&lt;/P&gt;</description>
    <pubDate>Wed, 23 Apr 2025 18:00:19 GMT</pubDate>
    <dc:creator>lbendlin</dc:creator>
    <dc:date>2025-04-23T18:00:19Z</dc:date>
    <item>
      <title>Ranking with RANKX, FILTER, ALL &amp; CALCULATE not working in Direct Query mode</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ranking-with-RANKX-FILTER-ALL-amp-CALCULATE-not-working-in/m-p/4664876#M178659</link>
      <description>&lt;P&gt;Has anyone had issues ranking using Direct Query vs import modes? I am using the following measure which works when the table is imported but not in direct query mode:&lt;/P&gt;&lt;PRE&gt;Rank Test = 
    RANKX(
        FILTER(
            ALL(
                accounts[last_program_size], 
                accounts[program_size]
                ),
            accounts[last_program_size] = MAX(accounts[last_program_size])
        ),
        CALCULATE(
            sum(accounts[count_flag])
            )
    )&lt;/PRE&gt;&lt;P&gt;A number of the functions used have this remark in the official documentation but I am not using it in a calculated column and do not have RLS configured.&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;This function is not supported for use in DirectQuery mode when used in calculated columns or row-level security (RLS) rules.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Apr 2025 12:15:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ranking-with-RANKX-FILTER-ALL-amp-CALCULATE-not-working-in/m-p/4664876#M178659</guid>
      <dc:creator>TickData</dc:creator>
      <dc:date>2025-04-23T12:15:38Z</dc:date>
    </item>
    <item>
      <title>Re: Ranking with RANKX, FILTER, ALL &amp; CALCULATE not working in Direct Query mode</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ranking-with-RANKX-FILTER-ALL-amp-CALCULATE-not-working-in/m-p/4665029#M178664</link>
      <description>&lt;P&gt;Try using the RANK function instead.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Apr 2025 13:43:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ranking-with-RANKX-FILTER-ALL-amp-CALCULATE-not-working-in/m-p/4665029#M178664</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2025-04-23T13:43:20Z</dc:date>
    </item>
    <item>
      <title>Re: Ranking with RANKX, FILTER, ALL &amp; CALCULATE not working in Direct Query mode</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ranking-with-RANKX-FILTER-ALL-amp-CALCULATE-not-working-in/m-p/4665173#M178672</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="100342" data-lia-user-login="lbendlin" class="lia-mention lia-mention-user"&gt;lbendlin&lt;/a&gt;&amp;nbsp; I seem to get an error when I do it like this:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Rank Test A =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;RANK&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;DENSE&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ORDERBY&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;sum&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;accounts&lt;/SPAN&gt;&lt;SPAN&gt;[count_flag]&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;DESC&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;PARTITIONBY&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;accounts&lt;/SPAN&gt;&lt;SPAN&gt;[last_program_size]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; )&lt;BR /&gt;Message:&lt;BR /&gt;RANK's Relation parameter was omitted and its ORDERBY clause contained a non-column reference expression. This is not supported.&lt;BR /&gt;&lt;BR /&gt;I guess this makes sense as I need to order by sum(accounts[count_flag]) not a column on its own.&lt;BR /&gt;&lt;BR /&gt;If it helps this needs to go into a table visual and display the last_program_size, program_size,&amp;nbsp;sum(accounts[count_flag]) and the rank.&amp;nbsp; It needs to be dynamically calculated as filters are applied in the model.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 23 Apr 2025 14:42:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ranking-with-RANKX-FILTER-ALL-amp-CALCULATE-not-working-in/m-p/4665173#M178672</guid>
      <dc:creator>TickData</dc:creator>
      <dc:date>2025-04-23T14:42:11Z</dc:date>
    </item>
    <item>
      <title>Re: Ranking with RANKX, FILTER, ALL &amp; CALCULATE not working in Direct Query mode</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ranking-with-RANKX-FILTER-ALL-amp-CALCULATE-not-working-in/m-p/4665451#M178679</link>
      <description>&lt;P&gt;you can materialize the measure values per [last_program_size]&amp;nbsp; (i guess that is your ranking target) into a table variable and then run RANK over that table.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Apr 2025 18:00:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ranking-with-RANKX-FILTER-ALL-amp-CALCULATE-not-working-in/m-p/4665451#M178679</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2025-04-23T18:00:19Z</dc:date>
    </item>
    <item>
      <title>Re: Ranking with RANKX, FILTER, ALL &amp; CALCULATE not working in Direct Query mode</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ranking-with-RANKX-FILTER-ALL-amp-CALCULATE-not-working-in/m-p/4666488#M178741</link>
      <description>&lt;P&gt;Is this how you mean?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;P&gt;Rank Test wih Table =&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;VAR grouped_table =&lt;BR /&gt;SUMMARIZE(accounts,&lt;BR /&gt;accounts[last_program_size],&lt;BR /&gt;accounts[program_size],&lt;BR /&gt;"No of Next Purchases", COUNT(accounts[id])&lt;BR /&gt;)&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;RETURN&lt;/P&gt;&lt;P&gt;RANK(&lt;BR /&gt;DENSE,&lt;BR /&gt;ORDERBY(grouped_table[No of Next Purchases]),&lt;BR /&gt;PARTITIONBY(grouped_table[last_program_size])&lt;BR /&gt;)&lt;/P&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;If I do it like this the columns in ORDERBY and PARTITIONBY are underlined and I get the error:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Cannot find table 'grouped_table'.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;P&gt;Any ideas what I am doing wrong?&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 24 Apr 2025 11:02:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ranking-with-RANKX-FILTER-ALL-amp-CALCULATE-not-working-in/m-p/4666488#M178741</guid>
      <dc:creator>TickData</dc:creator>
      <dc:date>2025-04-24T11:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: Ranking with RANKX, FILTER, ALL &amp; CALCULATE not working in Direct Query mode</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ranking-with-RANKX-FILTER-ALL-amp-CALCULATE-not-working-in/m-p/4666904#M178757</link>
      <description>&lt;P&gt;put the table reference in the relation parameter. Then in the orderby you can reference the column name.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Apr 2025 13:35:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ranking-with-RANKX-FILTER-ALL-amp-CALCULATE-not-working-in/m-p/4666904#M178757</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2025-04-24T13:35:58Z</dc:date>
    </item>
    <item>
      <title>Re: Ranking with RANKX, FILTER, ALL &amp; CALCULATE not working in Direct Query mode</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ranking-with-RANKX-FILTER-ALL-amp-CALCULATE-not-working-in/m-p/4667074#M178763</link>
      <description>&lt;P&gt;Thanks. I've done it as below but it's still ranking everything as 1.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Rank Test wih Table =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;grouped_table&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;SUMMARIZE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;accounts&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;accounts&lt;/SPAN&gt;&lt;SPAN&gt;[last_program_size]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;accounts&lt;/SPAN&gt;&lt;SPAN&gt;[program_size]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"No of Next Purchases"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;COUNT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;accounts&lt;/SPAN&gt;&lt;SPAN&gt;[id]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;RANK&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;DENSE&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;grouped_table&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ORDERBY&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[No of Next Purchases]&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;DESC&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;PARTITIONBY&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[last_program_size]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 24 Apr 2025 14:44:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ranking-with-RANKX-FILTER-ALL-amp-CALCULATE-not-working-in/m-p/4667074#M178763</guid>
      <dc:creator>TickData</dc:creator>
      <dc:date>2025-04-24T14:44:15Z</dc:date>
    </item>
    <item>
      <title>Re: Ranking with RANKX, FILTER, ALL &amp; CALCULATE not working in Direct Query mode</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ranking-with-RANKX-FILTER-ALL-amp-CALCULATE-not-working-in/m-p/4667128#M178769</link>
      <description>&lt;P&gt;Please provide sample data that covers your issue or question &lt;STRONG&gt;completely&lt;/STRONG&gt;, in a &lt;STRONG&gt;usable&lt;/STRONG&gt; format (not as a screenshot).&lt;BR /&gt;Do not include sensitive information. Do not include anything that is unrelated to the issue or question. &lt;BR /&gt;Please show the expected outcome based on the sample data you provided. &lt;BR /&gt;&lt;BR /&gt;Need help uploading data? &lt;A href="https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216&lt;/A&gt; &lt;BR /&gt;Want faster answers? &lt;A href="https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Apr 2025 15:12:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ranking-with-RANKX-FILTER-ALL-amp-CALCULATE-not-working-in/m-p/4667128#M178769</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2025-04-24T15:12:01Z</dc:date>
    </item>
    <item>
      <title>Re: Ranking with RANKX, FILTER, ALL &amp; CALCULATE not working in Direct Query mode</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ranking-with-RANKX-FILTER-ALL-amp-CALCULATE-not-working-in/m-p/4670209#M178883</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1264496" data-lia-user-login="TickData" class="lia-mention lia-mention-user"&gt;TickData&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="100342" data-lia-user-login="lbendlin" class="lia-mention lia-mention-user"&gt;lbendlin&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 super user resolved your issue? If not please&amp;nbsp;provide sample data that covers your issue or question&amp;nbsp;completely.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If our super user response resolved your issue, please mark it as "Accept as solution" and click "Yes" if you found it helpful.&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, 28 Apr 2025 07:36:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ranking-with-RANKX-FILTER-ALL-amp-CALCULATE-not-working-in/m-p/4670209#M178883</guid>
      <dc:creator>v-achippa</dc:creator>
      <dc:date>2025-04-28T07:36:34Z</dc:date>
    </item>
    <item>
      <title>Re: Ranking with RANKX, FILTER, ALL &amp; CALCULATE not working in Direct Query mode</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ranking-with-RANKX-FILTER-ALL-amp-CALCULATE-not-working-in/m-p/4677767#M179158</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1264496" target="_blank"&gt;@TickData&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 super user resolved your issue? If not please&amp;nbsp;provide sample data that covers your issue or question&amp;nbsp;completely.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If our super user response resolved your issue, please mark it as "Accept as solution" and click "Yes" if you found it helpful.&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>Fri, 02 May 2025 13:25:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ranking-with-RANKX-FILTER-ALL-amp-CALCULATE-not-working-in/m-p/4677767#M179158</guid>
      <dc:creator>v-achippa</dc:creator>
      <dc:date>2025-05-02T13:25:33Z</dc:date>
    </item>
    <item>
      <title>Re: Ranking with RANKX, FILTER, ALL &amp; CALCULATE not working in Direct Query mode</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ranking-with-RANKX-FILTER-ALL-amp-CALCULATE-not-working-in/m-p/4680135#M179260</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1264496" target="_blank"&gt;@TickData&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 provided by the super user resolved your issue?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If our super user response resolved your issue, please mark it as "Accept as solution" and click "Yes" if you found it helpful.&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, 05 May 2025 11:26:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ranking-with-RANKX-FILTER-ALL-amp-CALCULATE-not-working-in/m-p/4680135#M179260</guid>
      <dc:creator>v-achippa</dc:creator>
      <dc:date>2025-05-05T11:26:51Z</dc:date>
    </item>
    <item>
      <title>Re: Ranking with RANKX, FILTER, ALL &amp; CALCULATE not working in Direct Query mode</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ranking-with-RANKX-FILTER-ALL-amp-CALCULATE-not-working-in/m-p/4713573#M180536</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1264496" data-lia-user-login="TickData" class="lia-mention lia-mention-user"&gt;TickData&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As we haven't heard back from you, we are closing this thread for now. If you have any further issues, please start a new thread in the community forum, and we will be ready to assist you. Thank you for being part of the Microsoft Fabric Community.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;SPAN data-teams="true"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;
&lt;P&gt;Anjan Kumar Chippa&lt;/P&gt;</description>
      <pubDate>Fri, 30 May 2025 08:01:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ranking-with-RANKX-FILTER-ALL-amp-CALCULATE-not-working-in/m-p/4713573#M180536</guid>
      <dc:creator>v-achippa</dc:creator>
      <dc:date>2025-05-30T08:01:14Z</dc:date>
    </item>
  </channel>
</rss>

