<?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 Expiring date greater than &amp;quot;today&amp;quot; in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Expiring-date-greater-than-quot-today-quot/m-p/2691083#M81039</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am a brand new Power BI user.&lt;/P&gt;&lt;P&gt;Could you please help me create a measure to get as a result only expiration dates greater than "today"?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Tue, 09 Aug 2022 23:00:54 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-08-09T23:00:54Z</dc:date>
    <item>
      <title>Expiring date greater than "today"</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Expiring-date-greater-than-quot-today-quot/m-p/2691083#M81039</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am a brand new Power BI user.&lt;/P&gt;&lt;P&gt;Could you please help me create a measure to get as a result only expiration dates greater than "today"?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2022 23:00:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Expiring-date-greater-than-quot-today-quot/m-p/2691083#M81039</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-09T23:00:54Z</dc:date>
    </item>
    <item>
      <title>Re: Expiring date greater than "today"</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Expiring-date-greater-than-quot-today-quot/m-p/2691336#M81054</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; ,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;countrows(filter(Table, Table[exp Date] &amp;gt; today() ) )&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;calculate(count(Table[Value]), filter(Table, Table[exp Date] &amp;gt; today() ) )&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2022 03:22:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Expiring-date-greater-than-quot-today-quot/m-p/2691336#M81054</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-08-10T03:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: Expiring date greater than "today"</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Expiring-date-greater-than-quot-today-quot/m-p/2692200#M81104</link>
      <description>&lt;P&gt;Hi again.&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;Unfortunately, it is not working:&lt;/P&gt;&lt;P&gt;I would like the results to show the all the product's expiration dates only when they are greater than "today".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried your suggestioned solutions but I &lt;STRONG&gt;got no data as results.&lt;/STRONG&gt; I might have used them in a wrong way.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Eg.: if today is 08/10/2022&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the matrix I would like to get:&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Product&lt;/TD&gt;&lt;TD&gt;ExpDate&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Expected results in the column&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;09/20/2027&lt;/TD&gt;&lt;TD&gt;09/20/2027&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;01/08/2023&lt;/TD&gt;&lt;TD&gt;01/08/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;12/25/2020&lt;/TD&gt;&lt;TD&gt;This row should not appear on the matrix&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;04/12/2025&lt;/TD&gt;&lt;TD&gt;04/12/2025&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you give me a hint?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2022 10:27:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Expiring-date-greater-than-quot-today-quot/m-p/2692200#M81104</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-10T10:27:26Z</dc:date>
    </item>
    <item>
      <title>Re: Expiring date greater than "today"</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Expiring-date-greater-than-quot-today-quot/m-p/2719168#M82852</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could try this measure.&lt;/P&gt;
&lt;P&gt;ExpectedRes = CALCULATE(MAX('Table'[ExpDate]),FILTER('Table',MAX('Table'[ExpDate])&amp;gt;=TODAY()))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then, the result looks like this.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Attached the pbix file as reference.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If there is any post helps, then please consider&lt;STRONG&gt; Accept it as the solution&lt;/STRONG&gt; to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please let me know. Thanks a lot!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Community Support Team _ Caiyun&lt;/P&gt;</description>
      <pubDate>Tue, 23 Aug 2022 07:12:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Expiring-date-greater-than-quot-today-quot/m-p/2719168#M82852</guid>
      <dc:creator>v-cazheng-msft</dc:creator>
      <dc:date>2022-08-23T07:12:04Z</dc:date>
    </item>
    <item>
      <title>Re: Expiring date greater than "today"</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Expiring-date-greater-than-quot-today-quot/m-p/2720990#M82976</link>
      <description>&lt;P&gt;Hi there.&lt;/P&gt;&lt;P&gt;Thank you, very much for your help.&lt;BR /&gt;You suggestion worked very well!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Dielson&lt;/P&gt;</description>
      <pubDate>Tue, 23 Aug 2022 16:30:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Expiring-date-greater-than-quot-today-quot/m-p/2720990#M82976</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-23T16:30:05Z</dc:date>
    </item>
  </channel>
</rss>

