<?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: Status Tracking in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Status-Tracking/m-p/3248132#M119760</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="451586" data-lia-user-login="Euro0681" class="lia-mention lia-mention-user"&gt;Euro0681&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Why not just filter for "Late" status?&lt;/P&gt;</description>
    <pubDate>Mon, 22 May 2023 16:28:39 GMT</pubDate>
    <dc:creator>tamerj1</dc:creator>
    <dc:date>2023-05-22T16:28:39Z</dc:date>
    <item>
      <title>Status Tracking</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Status-Tracking/m-p/3247967#M119740</link>
      <description>&lt;P&gt;Hi All,&lt;BR /&gt;Needing some help on displaying the orders where the status has changed when compared to the previous day.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Table on the left showing 2 Order ID's and the table on the right only returns the order where the status has changed when compared to "Todays DT" Column.&lt;BR /&gt;&lt;BR /&gt;Essentially Order ID '123' was in progress and expected to be delivered on the 20th, "Todays DT" Column is just tracking the order everyday hence making an entry everyday. But when the 20th of May came we can see the order was not delivered and had been pushed back a couple of days making it "Late" and is displayed in the table on the right.&lt;BR /&gt;&lt;BR /&gt;How could I replicate this using a DAX? Either measure/column is fine just hitting a roadblock.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2023 14:43:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Status-Tracking/m-p/3247967#M119740</guid>
      <dc:creator>Euro0681</dc:creator>
      <dc:date>2023-05-22T14:43:58Z</dc:date>
    </item>
    <item>
      <title>Re: Status Tracking</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Status-Tracking/m-p/3248132#M119760</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="451586" data-lia-user-login="Euro0681" class="lia-mention lia-mention-user"&gt;Euro0681&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Why not just filter for "Late" status?&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2023 16:28:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Status-Tracking/m-p/3248132#M119760</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-05-22T16:28:39Z</dc:date>
    </item>
    <item>
      <title>Re: Status Tracking</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Status-Tracking/m-p/3248350#M119777</link>
      <description>&lt;P&gt;So what I'm getting at is using the MAX(Today's DT) and compare each order with previous Today's Date &amp;lt; MAX(Todays DT) and check to see if anything on the order has changed (Status in this example).&lt;BR /&gt;Hope this image clears it up&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2023 18:07:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Status-Tracking/m-p/3248350#M119777</guid>
      <dc:creator>Euro0681</dc:creator>
      <dc:date>2023-05-22T18:07:01Z</dc:date>
    </item>
    <item>
      <title>Re: Status Tracking</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Status-Tracking/m-p/3249477#M119857</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="451586" data-lia-user-login="Euro0681" class="lia-mention lia-mention-user"&gt;Euro0681&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Place the following measure in the filter pane of the table visual, select "is not blank" and apply the filter.&amp;nbsp;&lt;BR /&gt;FilterMeasure =&lt;BR /&gt;VAR T1 =&lt;BR /&gt;CALCULATETABLE ( 'Table', ALLEXCEPT ( 'Table', 'Table'[Order ID] ) )&lt;BR /&gt;VAR T2 =&lt;BR /&gt;DISTINCT (&lt;BR /&gt;SELECTCOLUMNS (&lt;BR /&gt;T1,&lt;BR /&gt;"@Status", 'Table'[Status],&lt;BR /&gt;"@Expected", 'Table'[Expected DT]&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;VAR T3 =&lt;BR /&gt;SELECTCOLUMNS (&lt;BR /&gt;TOPN ( 1, T1, 'Table'[Tody's DT] ),&lt;BR /&gt;"@Status", 'Table'[Status],&lt;BR /&gt;"@Expected", 'Table'[Expected DT]&lt;BR /&gt;)&lt;BR /&gt;VAR T4 =&lt;BR /&gt;SELECTCOLUMNS (&lt;BR /&gt;'Table',&lt;BR /&gt;"@Status", 'Table'[Status],&lt;BR /&gt;"@Expected", 'Table'[Expected DT]&lt;BR /&gt;)&lt;BR /&gt;RETURN&lt;BR /&gt;IF ( COUNTROWS ( T2 ) &amp;gt; 1, COUNTROWS ( INTERSECT ( T3, T4 ) ) )&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 May 2023 18:07:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Status-Tracking/m-p/3249477#M119857</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-05-23T18:07:58Z</dc:date>
    </item>
  </channel>
</rss>

