<?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: Track outstanding tasks per dataset source based on due date/status in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Track-outstanding-tasks-per-dataset-source-based-on-due-date/m-p/3360215#M126320</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="291628" data-lia-user-login="Jihwan_Kim" class="lia-mention lia-mention-user"&gt;Jihwan_Kim&lt;/a&gt;&amp;nbsp;- wanted to follow up with you and see if you could help with this issue on your solution! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 01 Aug 2023 17:43:13 GMT</pubDate>
    <dc:creator>powerbinewbie26</dc:creator>
    <dc:date>2023-08-01T17:43:13Z</dc:date>
    <item>
      <title>Track outstanding tasks per dataset source based on due date/status</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Track-outstanding-tasks-per-dataset-source-based-on-due-date/m-p/3337240#M125163</link>
      <description>&lt;P&gt;I want to track outstanding tasks per dataset source based on due date/status.&lt;BR /&gt;Sheet: Appended_DataSet&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Data Set Source&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Due Date&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Status&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT color="#FF0000"&gt;S1&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#FF0000"&gt;16-Jul-23&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#FF0000"&gt;In Progress&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;S2&lt;/TD&gt;&lt;TD&gt;1-Aug-23&lt;/TD&gt;&lt;TD&gt;In Progress&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;S3&lt;/TD&gt;&lt;TD&gt;17-Jul-23&lt;/TD&gt;&lt;TD&gt;Completed&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;BR /&gt;What dax expression can I use with my appended data set to say something like this: In my appended DataSet, count the rows in column 'DataSet Source' and calculate the # of rows(tasks) that are past the 'due date' and are not 'completed' based on today's date - I ideally want to have them displayed on the visual cards. (&lt;FONT color="#FF0000"&gt;In the data set above row 2 would be flagged as past due given today's date Jul 18)&lt;FONT color="#000000"&gt; I hope you don't mind, I tagged a few users because I saw that you had much experience with the DAX expressions&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="291628" data-lia-user-login="Jihwan_Kim" class="lia-mention lia-mention-user"&gt;Jihwan_Kim&lt;/a&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="6799" data-lia-user-login="OwenAuger" class="lia-mention lia-mention-user"&gt;OwenAuger&lt;/a&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="240987" data-lia-user-login="johnt75" class="lia-mention lia-mention-user"&gt;johnt75&lt;/a&gt;&amp;nbsp;thanks so much in advance!&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jul 2023 23:47:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Track-outstanding-tasks-per-dataset-source-based-on-due-date/m-p/3337240#M125163</guid>
      <dc:creator>powerbinewbie26</dc:creator>
      <dc:date>2023-07-18T23:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: Track outstanding tasks per dataset source based on due date/status</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Track-outstanding-tasks-per-dataset-source-based-on-due-date/m-p/3337650#M125191</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please check the below picture and the attached pbix file.&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;LI-CODE lang="markup"&gt;expected result measure: =
VAR _today =
    TODAY ()
VAR _t =
    FILTER ( Data, Data[Due Date] &amp;gt; _today &amp;amp;&amp;amp; Data[Status] &amp;lt;&amp;gt; "Completed" )
RETURN
    COUNTROWS ( _t )
&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 19 Jul 2023 03:12:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Track-outstanding-tasks-per-dataset-source-based-on-due-date/m-p/3337650#M125191</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2023-07-19T03:12:58Z</dc:date>
    </item>
    <item>
      <title>Re: Track outstanding tasks per dataset source based on due date/status</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Track-outstanding-tasks-per-dataset-source-based-on-due-date/m-p/3349357#M125762</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="291628" data-lia-user-login="Jihwan_Kim" class="lia-mention lia-mention-user"&gt;Jihwan_Kim&lt;/a&gt;&amp;nbsp;thank you so much for your help! So i've done as you've suggested and though it does return a value - it seems to be an incorrect value.&amp;nbsp; In the snip I attached you can see the status indicated Not Started (something other than Completed) and the Final Due Date is before today's date but all of these have not been flagged as outstanding -any advice?&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I also attached the replica of your example - thank you!!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jul 2023 18:01:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Track-outstanding-tasks-per-dataset-source-based-on-due-date/m-p/3349357#M125762</guid>
      <dc:creator>powerbinewbie26</dc:creator>
      <dc:date>2023-07-25T18:01:47Z</dc:date>
    </item>
    <item>
      <title>Re: Track outstanding tasks per dataset source based on due date/status</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Track-outstanding-tasks-per-dataset-source-based-on-due-date/m-p/3360215#M126320</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="291628" data-lia-user-login="Jihwan_Kim" class="lia-mention lia-mention-user"&gt;Jihwan_Kim&lt;/a&gt;&amp;nbsp;- wanted to follow up with you and see if you could help with this issue on your solution! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 17:43:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Track-outstanding-tasks-per-dataset-source-based-on-due-date/m-p/3360215#M126320</guid>
      <dc:creator>powerbinewbie26</dc:creator>
      <dc:date>2023-08-01T17:43:13Z</dc:date>
    </item>
    <item>
      <title>Re: Track outstanding tasks per dataset source based on due date/status</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Track-outstanding-tasks-per-dataset-source-based-on-due-date/m-p/3360216#M126321</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="291628" data-lia-user-login="Jihwan_Kim" class="lia-mention lia-mention-user"&gt;Jihwan_Kim&lt;/a&gt;&amp;nbsp;- wanted to follow up with you and see if you could help with this issue on your solution! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 17:43:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Track-outstanding-tasks-per-dataset-source-based-on-due-date/m-p/3360216#M126321</guid>
      <dc:creator>powerbinewbie26</dc:creator>
      <dc:date>2023-08-01T17:43:14Z</dc:date>
    </item>
  </channel>
</rss>

