<?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: Rank function - some clarification needed in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rank-function-some-clarification-needed/m-p/4664306#M178633</link>
    <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="569801" data-lia-user-login="mp390988" class="lia-mention lia-mention-user"&gt;mp390988&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We haven’t heard back from you regarding your issue. If it has been resolved, please mark the helpful response as the solution and give a ‘Kudos’ to assist others. If you still need support, let us know.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 23 Apr 2025 06:27:08 GMT</pubDate>
    <dc:creator>v-saisrao-msft</dc:creator>
    <dc:date>2025-04-23T06:27:08Z</dc:date>
    <item>
      <title>Rank function - some clarification needed</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rank-function-some-clarification-needed/m-p/4613638#M176564</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a measure called BoxOffice which is simply SUM(&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Film&lt;/SPAN&gt;&lt;SPAN&gt;[Box Office Dollars]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I want to understand why the Rank function yields different results when I write [BoxOffice] versus SUM&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Film&lt;/SPAN&gt;&lt;SPAN&gt;[Box Office Dollars]&lt;/SPAN&gt;&lt;SPAN&gt;) as you can see in results below. My understanding is that for context transition to take place, we need an iterator and a measure inside the iterator. Rank is not an iterator so there is no row context.&lt;/SPAN&gt;&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;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Mar 2025 22:10:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rank-function-some-clarification-needed/m-p/4613638#M176564</guid>
      <dc:creator>mp390988</dc:creator>
      <dc:date>2025-03-17T22:10:25Z</dc:date>
    </item>
    <item>
      <title>Re: Rank function - some clarification needed</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rank-function-some-clarification-needed/m-p/4613655#M176565</link>
      <description>&lt;P&gt;A measure has a implict Calculate() wrapped around it causing &lt;A href="https://www.sqlbi.com/articles/understanding-context-transition-in-dax/" target="_self"&gt;context transition&lt;/A&gt;, changing the row context of the table you are iterating with rank to be convert to a filter context.&lt;/P&gt;&lt;P&gt;Where as the sum by itself only has the row context from the iteration&lt;/P&gt;</description>
      <pubDate>Mon, 17 Mar 2025 22:48:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rank-function-some-clarification-needed/m-p/4613655#M176565</guid>
      <dc:creator>Deku</dc:creator>
      <dc:date>2025-03-17T22:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: Rank function - some clarification needed</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rank-function-some-clarification-needed/m-p/4613660#M176566</link>
      <description>&lt;P&gt;I understand a measure has an implicit Calculate wrapped around it which can cause context transition provided a table is being iterated. My question is that all iterator functions in DAX have an X at the end of it, like SUMX, AVERAGEX, RANKX ---&amp;gt; these are iterators but there is an exception, FILTER is also an iterator which doesn't have an "X". Does the same apply to RANK? Is the RANK function an iterator just like FILTER that doesn't have an "X" in its name?&lt;/P&gt;</description>
      <pubDate>Mon, 17 Mar 2025 22:54:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rank-function-some-clarification-needed/m-p/4613660#M176566</guid>
      <dc:creator>mp390988</dc:creator>
      <dc:date>2025-03-17T22:54:45Z</dc:date>
    </item>
    <item>
      <title>Re: Rank function - some clarification needed</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rank-function-some-clarification-needed/m-p/4613670#M176567</link>
      <description>&lt;P&gt;RANKX is a iterator function.&lt;/P&gt;&lt;P&gt;Rank is a window functions. It has to generate a data cache (a table) that has all the columns from the relation parameter you provide. For each row in that table it will apply your orderby. If the orderby is a expression then it will have to be evaluated similar to a x function&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Mar 2025 23:03:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rank-function-some-clarification-needed/m-p/4613670#M176567</guid>
      <dc:creator>Deku</dc:creator>
      <dc:date>2025-03-17T23:03:52Z</dc:date>
    </item>
    <item>
      <title>Re: Rank function - some clarification needed</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rank-function-some-clarification-needed/m-p/4652042#M178071</link>
      <description>&lt;P&gt;&lt;SPAN data-teams="true"&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="569801" data-lia-user-login="mp390988" class="lia-mention lia-mention-user"&gt;mp390988&lt;/a&gt;,&lt;BR /&gt;I wanted to check if you had the opportunity to review the information provided by &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1231947" data-lia-user-login="Deku" class="lia-mention lia-mention-user"&gt;Deku&lt;/a&gt;. Please feel free to contact us if you have any further questions. If the response has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.&lt;BR /&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Apr 2025 15:29:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rank-function-some-clarification-needed/m-p/4652042#M178071</guid>
      <dc:creator>v-saisrao-msft</dc:creator>
      <dc:date>2025-04-14T15:29:40Z</dc:date>
    </item>
    <item>
      <title>Re: Rank function - some clarification needed</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rank-function-some-clarification-needed/m-p/4656809#M178290</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="569801" data-lia-user-login="mp390988" class="lia-mention lia-mention-user"&gt;mp390988&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Apr 2025 06:24:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rank-function-some-clarification-needed/m-p/4656809#M178290</guid>
      <dc:creator>v-saisrao-msft</dc:creator>
      <dc:date>2025-04-17T06:24:59Z</dc:date>
    </item>
    <item>
      <title>Re: Rank function - some clarification needed</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rank-function-some-clarification-needed/m-p/4664306#M178633</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="569801" data-lia-user-login="mp390988" class="lia-mention lia-mention-user"&gt;mp390988&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We haven’t heard back from you regarding your issue. If it has been resolved, please mark the helpful response as the solution and give a ‘Kudos’ to assist others. If you still need support, let us know.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Apr 2025 06:27:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rank-function-some-clarification-needed/m-p/4664306#M178633</guid>
      <dc:creator>v-saisrao-msft</dc:creator>
      <dc:date>2025-04-23T06:27:08Z</dc:date>
    </item>
  </channel>
</rss>

