<?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: How can I show the number of rows that the due date value has been passed? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-show-the-number-of-rows-that-the-due-date-value-has/m-p/3682392#M143014</link>
    <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="661340" data-lia-user-login="BarryFletcher" class="lia-mention lia-mention-user"&gt;BarryFletcher&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Can I set a table based on these results?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry didn't understand. Please explain.&lt;/P&gt;&lt;P&gt;If you can share screenshot what you have and what you expect, that would help.&lt;/P&gt;</description>
    <pubDate>Tue, 06 Feb 2024 08:39:22 GMT</pubDate>
    <dc:creator>talespin</dc:creator>
    <dc:date>2024-02-06T08:39:22Z</dc:date>
    <item>
      <title>How can I show the number of rows that the due date value has been passed?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-show-the-number-of-rows-that-the-due-date-value-has/m-p/3678383#M142825</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a table with a "Due Date" columnd / value. How can I list all records that have passed this date and need to be listed as Overdue?&lt;/P&gt;</description>
      <pubDate>Sun, 04 Feb 2024 11:28:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-show-the-number-of-rows-that-the-due-date-value-has/m-p/3678383#M142825</guid>
      <dc:creator>BarryFletcher</dc:creator>
      <dc:date>2024-02-04T11:28:47Z</dc:date>
    </item>
    <item>
      <title>Re: How can I show the number of rows that the due date value has been passed?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-show-the-number-of-rows-that-the-due-date-value-has/m-p/3678402#M142826</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="661340" data-lia-user-login="BarryFletcher" class="lia-mention lia-mention-user"&gt;BarryFletcher&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You could Put all records in a table or get count and apply filter at visual level where DueDate &amp;lt; Current date without explicit DAX.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;use something like this&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Count =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;( &lt;/SPAN&gt;&lt;SPAN&gt;COUNTROWS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;TestTable2&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;REMOVEFILTERS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;TestTable2&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;TestTable2&lt;/SPAN&gt;&lt;SPAN&gt;[CreatedDate]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt; &lt;/SPAN&gt;&lt;SPAN&gt;UTCTODAY&lt;/SPAN&gt;&lt;SPAN&gt;())&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Feb 2024 12:10:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-show-the-number-of-rows-that-the-due-date-value-has/m-p/3678402#M142826</guid>
      <dc:creator>talespin</dc:creator>
      <dc:date>2024-02-04T12:10:20Z</dc:date>
    </item>
    <item>
      <title>Re: How can I show the number of rows that the due date value has been passed?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-show-the-number-of-rows-that-the-due-date-value-has/m-p/3681992#M142993</link>
      <description>&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="661340" data-lia-user-login="BarryFletcher" class="lia-mention lia-mention-user"&gt;BarryFletcher&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;Can you please share a pbix or some dummy data that keep the raw data structure with expected results? It should help us clarify your scenario and test to coding formula.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;&lt;A href="http://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank"&gt;How to Get Your Question Answered Quickly&amp;nbsp;&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;Regards,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;Xiaoxin Sheng&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2024 05:53:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-show-the-number-of-rows-that-the-due-date-value-has/m-p/3681992#M142993</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-02-06T05:53:45Z</dc:date>
    </item>
    <item>
      <title>Re: How can I show the number of rows that the due date value has been passed?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-show-the-number-of-rows-that-the-due-date-value-has/m-p/3682225#M143006</link>
      <description>&lt;P&gt;Apologies for the deayed reply but I was away for 2 days.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In my table below the "Due Date" can be unique to each row. At the moment I have 279 rows with a Due Date set - what i would like to be able to report on is the rows which have exceeded their Due Date&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2024 07:54:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-show-the-number-of-rows-that-the-due-date-value-has/m-p/3682225#M143006</guid>
      <dc:creator>BarryFletcher</dc:creator>
      <dc:date>2024-02-06T07:54:24Z</dc:date>
    </item>
    <item>
      <title>Re: How can I show the number of rows that the due date value has been passed?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-show-the-number-of-rows-that-the-due-date-value-has/m-p/3682237#M143008</link>
      <description>&lt;P&gt;Thank you - I have set this but changed the Due date &amp;lt;UTCTODAY()&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can I set a table based on these results?&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2024 07:56:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-show-the-number-of-rows-that-the-due-date-value-has/m-p/3682237#M143008</guid>
      <dc:creator>BarryFletcher</dc:creator>
      <dc:date>2024-02-06T07:56:01Z</dc:date>
    </item>
    <item>
      <title>Re: How can I show the number of rows that the due date value has been passed?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-show-the-number-of-rows-that-the-due-date-value-has/m-p/3682392#M143014</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="661340" data-lia-user-login="BarryFletcher" class="lia-mention lia-mention-user"&gt;BarryFletcher&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Can I set a table based on these results?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry didn't understand. Please explain.&lt;/P&gt;&lt;P&gt;If you can share screenshot what you have and what you expect, that would help.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2024 08:39:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-show-the-number-of-rows-that-the-due-date-value-has/m-p/3682392#M143014</guid>
      <dc:creator>talespin</dc:creator>
      <dc:date>2024-02-06T08:39:22Z</dc:date>
    </item>
    <item>
      <title>Re: How can I show the number of rows that the due date value has been passed?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-show-the-number-of-rows-that-the-due-date-value-has/m-p/3682395#M143015</link>
      <description>&lt;P&gt;It's ok I have a table setup now with a page filter applied as you suggested earlier.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2024 08:41:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-show-the-number-of-rows-that-the-due-date-value-has/m-p/3682395#M143015</guid>
      <dc:creator>BarryFletcher</dc:creator>
      <dc:date>2024-02-06T08:41:27Z</dc:date>
    </item>
  </channel>
</rss>

