<?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 Help Understanding DAX Formula: RANKX With EARLIER in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Understanding-DAX-Formula-RANKX-With-EARLIER/m-p/3607327#M139367</link>
    <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I took over a partially completed project from someone that is no longer with the company. Could you help explain what this formula is doing/how it works?&lt;BR /&gt;&lt;BR /&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;RANKX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(Table&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;Append1&lt;/SPAN&gt;&lt;SPAN&gt;[IDNumber]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;EARLIER&lt;/SPAN&gt;&lt;SPAN&gt;(Table&lt;/SPAN&gt;&lt;SPAN&gt;[IDNumber]&lt;/SPAN&gt;&lt;SPAN&gt;)),&lt;/SPAN&gt;&lt;SPAN&gt;Table&lt;/SPAN&gt;&lt;SPAN&gt;[MonthStart]&lt;/SPAN&gt;&lt;SPAN&gt;,,&lt;/SPAN&gt;&lt;SPAN&gt;DESC&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;Dense&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Fri, 29 Dec 2023 14:38:59 GMT</pubDate>
    <dc:creator>dgreen1</dc:creator>
    <dc:date>2023-12-29T14:38:59Z</dc:date>
    <item>
      <title>Help Understanding DAX Formula: RANKX With EARLIER</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Understanding-DAX-Formula-RANKX-With-EARLIER/m-p/3607327#M139367</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I took over a partially completed project from someone that is no longer with the company. Could you help explain what this formula is doing/how it works?&lt;BR /&gt;&lt;BR /&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;RANKX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(Table&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;Append1&lt;/SPAN&gt;&lt;SPAN&gt;[IDNumber]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;EARLIER&lt;/SPAN&gt;&lt;SPAN&gt;(Table&lt;/SPAN&gt;&lt;SPAN&gt;[IDNumber]&lt;/SPAN&gt;&lt;SPAN&gt;)),&lt;/SPAN&gt;&lt;SPAN&gt;Table&lt;/SPAN&gt;&lt;SPAN&gt;[MonthStart]&lt;/SPAN&gt;&lt;SPAN&gt;,,&lt;/SPAN&gt;&lt;SPAN&gt;DESC&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;Dense&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 29 Dec 2023 14:38:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Understanding-DAX-Formula-RANKX-With-EARLIER/m-p/3607327#M139367</guid>
      <dc:creator>dgreen1</dc:creator>
      <dc:date>2023-12-29T14:38:59Z</dc:date>
    </item>
    <item>
      <title>Re: Help Understanding DAX Formula: RANKX With EARLIER</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Understanding-DAX-Formula-RANKX-With-EARLIER/m-p/3607361#M139368</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;RANKX ranks the values given in the filter context. In your case the values of [MonthStart] column are ranked in desceding order. Additional condition is that the IDNumber must match the id of the current row. Dense makes it so that there aren't any gaps in ranking order.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!&lt;BR /&gt;&lt;BR /&gt;My LinkedIn: &lt;A href="https://www.linkedin.com/in/n%C3%A4ttiahov-00001/" target="_blank"&gt;https://www.linkedin.com/in/n%C3%A4ttiahov-00001/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Dec 2023 15:04:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Understanding-DAX-Formula-RANKX-With-EARLIER/m-p/3607361#M139368</guid>
      <dc:creator>ValtteriN</dc:creator>
      <dc:date>2023-12-29T15:04:55Z</dc:date>
    </item>
    <item>
      <title>Re: Help Understanding DAX Formula: RANKX With EARLIER</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Understanding-DAX-Formula-RANKX-With-EARLIER/m-p/3607399#M139369</link>
      <description>&lt;P&gt;So in this case the most recent month for an ID without a match gets a 1, the preceding month where that ID existed gets a 2, and so on?&lt;/P&gt;</description>
      <pubDate>Fri, 29 Dec 2023 15:37:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Understanding-DAX-Formula-RANKX-With-EARLIER/m-p/3607399#M139369</guid>
      <dc:creator>dgreen1</dc:creator>
      <dc:date>2023-12-29T15:37:48Z</dc:date>
    </item>
  </channel>
</rss>

