<?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: DAX for Less than and greater than date in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-Less-than-and-greater-than-date/m-p/1936617#M42135</link>
    <description>&lt;P&gt;I modified my original to this and it worked perfect:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;CALCULATE(countrows(Elig_List),filter(Elig_List,Elig_List[Prom_Elig_Date]-TODAY()&amp;lt;=60),filter(Elig_List,Elig_List[Prom_Elig_Date]-TODAY()&amp;gt;45))&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 04 Jul 2021 18:25:10 GMT</pubDate>
    <dc:creator>Userpath77</dc:creator>
    <dc:date>2021-07-04T18:25:10Z</dc:date>
    <item>
      <title>DAX for Less than and greater than date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-Less-than-and-greater-than-date/m-p/1936354#M42123</link>
      <description>&lt;P&gt;Hello All&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Probably a simple fix, but I can't figure it out. I have a column of dates and I just need a measure that counts how many dates are:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;60 days or less than today, but greater that 45 days from today. Here is what I have, just not sure how to include the 45 day piece.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;=Calculate(countrows(Elig_List),filter(Elig_List,Elig_List[Prom_Elig_date]-Today()&amp;lt;=60))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for any help!&lt;/P&gt;</description>
      <pubDate>Sun, 04 Jul 2021 04:24:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-Less-than-and-greater-than-date/m-p/1936354#M42123</guid>
      <dc:creator>Userpath77</dc:creator>
      <dc:date>2021-07-04T04:24:08Z</dc:date>
    </item>
    <item>
      <title>Re: DAX for Less than and greater than date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-Less-than-and-greater-than-date/m-p/1936429#M42127</link>
      <description>&lt;P&gt;Try this measure please:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Count Days = 
var __today = TODAY()
var __result = 
    CALCULATE(
        COUNTROWS( Elig_List ),
        Elig_List[Prom_Elig_date] &amp;gt;= (__today + 45) &amp;amp;&amp;amp; Elig_List[Prom_Elig_date] &amp;lt;=  (__today  + 60) 
    )
return
    __result
&lt;/LI-CODE&gt;</description>
      <pubDate>Sun, 04 Jul 2021 10:39:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-Less-than-and-greater-than-date/m-p/1936429#M42127</guid>
      <dc:creator>Fowmy</dc:creator>
      <dc:date>2021-07-04T10:39:08Z</dc:date>
    </item>
    <item>
      <title>Re: DAX for Less than and greater than date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-Less-than-and-greater-than-date/m-p/1936612#M42134</link>
      <description>&lt;P&gt;Thanks Fowmy. I tried but that measure doesnt populate on the visual-----it breaks the pie chart visual I have to use and says "cant display visual."&lt;/P&gt;</description>
      <pubDate>Sun, 04 Jul 2021 17:48:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-Less-than-and-greater-than-date/m-p/1936612#M42134</guid>
      <dc:creator>Userpath77</dc:creator>
      <dc:date>2021-07-04T17:48:18Z</dc:date>
    </item>
    <item>
      <title>Re: DAX for Less than and greater than date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-Less-than-and-greater-than-date/m-p/1936617#M42135</link>
      <description>&lt;P&gt;I modified my original to this and it worked perfect:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;CALCULATE(countrows(Elig_List),filter(Elig_List,Elig_List[Prom_Elig_Date]-TODAY()&amp;lt;=60),filter(Elig_List,Elig_List[Prom_Elig_Date]-TODAY()&amp;gt;45))&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Jul 2021 18:25:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-for-Less-than-and-greater-than-date/m-p/1936617#M42135</guid>
      <dc:creator>Userpath77</dc:creator>
      <dc:date>2021-07-04T18:25:10Z</dc:date>
    </item>
  </channel>
</rss>

