<?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: Count Tasks Overdue, Approaching &amp;amp; In Date in Desktop</title>
    <link>https://community.fabric.microsoft.com/t5/Desktop/Count-Tasks-Overdue-Approaching-amp-In-Date/m-p/3368244#M1121663</link>
    <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="599574" data-lia-user-login="Narayana_Swamy" class="lia-mention lia-mention-user"&gt;Narayana_Swamy&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the fast reply! I'm looking for 3x separate measures please.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 07 Aug 2023 11:23:50 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-08-07T11:23:50Z</dc:date>
    <item>
      <title>Count Tasks Overdue, Approaching &amp; In Date</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Count-Tasks-Overdue-Approaching-amp-In-Date/m-p/3368211#M1121654</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could someone help me on the below please? I'm looking for a dax measure to count 3x separate items.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Overdue&lt;/STRONG&gt; (Count Task ID - Status Open and Due Date past todays date)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Approaching&lt;/STRONG&gt; - (Count Task ID - Status Open and Due Date within the next 30 days)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;In Date&lt;/STRONG&gt; - (Count Task ID - Status Open and Not Due in next 30 Days)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TIA!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Aug 2023 11:00:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Count-Tasks-Overdue-Approaching-amp-In-Date/m-p/3368211#M1121654</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-08-07T11:00:07Z</dc:date>
    </item>
    <item>
      <title>Re: Count Tasks Overdue, Approaching &amp; In Date</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Count-Tasks-Overdue-Approaching-amp-In-Date/m-p/3368239#M1121661</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A little bit of additional context would help. I am looking for:&lt;BR /&gt;1. Do you need 3 seperate outputs (matrix with 3 values as outputs) or everything in 1 (based on selected taskID)&lt;/P&gt;</description>
      <pubDate>Mon, 07 Aug 2023 11:21:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Count-Tasks-Overdue-Approaching-amp-In-Date/m-p/3368239#M1121661</guid>
      <dc:creator>Narayana_Swamy</dc:creator>
      <dc:date>2023-08-07T11:21:17Z</dc:date>
    </item>
    <item>
      <title>Re: Count Tasks Overdue, Approaching &amp; In Date</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Count-Tasks-Overdue-Approaching-amp-In-Date/m-p/3368244#M1121663</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="599574" data-lia-user-login="Narayana_Swamy" class="lia-mention lia-mention-user"&gt;Narayana_Swamy&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the fast reply! I'm looking for 3x separate measures please.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Aug 2023 11:23:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Count-Tasks-Overdue-Approaching-amp-In-Date/m-p/3368244#M1121663</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-08-07T11:23:50Z</dc:date>
    </item>
    <item>
      <title>Re: Count Tasks Overdue, Approaching &amp; In Date</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Count-Tasks-Overdue-Approaching-amp-In-Date/m-p/3371914#M1122632</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here I create a sample to have a test.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Measure:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Count Overdue = CALCULATE(COUNT('Table'[Task ID]),FILTER('Table','Table'[Status] = "Open" &amp;amp;&amp;amp; 'Table'[Due Date]&amp;lt;TODAY()))&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Count Approaching = CALCULATE(COUNT('Table'[Task ID]),FILTER('Table','Table'[Status] = "Open" &amp;amp;&amp;amp; 'Table'[Due Date]&amp;lt;=TODAY()+30 &amp;amp;&amp;amp; 'Table'[Due Date]&amp;gt;=TODAY()))&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Count In Date = CALCULATE(COUNT('Table'[Task ID]),FILTER('Table','Table'[Status] = "Open" &amp;amp;&amp;amp; 'Table'[Due Date]&amp;gt;TODAY()+30))&lt;/LI-CODE&gt;
&lt;P&gt;Result is as below.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Rico Zhou&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2023 09:23:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Count-Tasks-Overdue-Approaching-amp-In-Date/m-p/3371914#M1122632</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-08-09T09:23:27Z</dc:date>
    </item>
  </channel>
</rss>

