<?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 between a date range Q in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/DAX-for-between-a-date-range-Q/m-p/497515#M15250</link>
    <description>&lt;P&gt;EnqAmt =&lt;BR /&gt;SUMX (&lt;BR /&gt;FILTER ( _enquiries, _enquiries[_tsg_clientid_value] = accounts[accountid] &amp;amp;&amp;amp; _enquiries[Date] &amp;gt;= DATE(2018,08,01) &amp;amp;&amp;amp; _enquiries[Date] &amp;lt;= DATE(2018,08,31) ), _enquiries[Amount (Enq)]&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;#this_works&lt;/P&gt;</description>
    <pubDate>Thu, 23 Aug 2018 14:45:58 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-08-23T14:45:58Z</dc:date>
    <item>
      <title>DAX for between a date range Q</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/DAX-for-between-a-date-range-Q/m-p/496205#M15193</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;would like to run my SUMX() with a FILTER() between a date range that I want hard coded. What I have doesn't work when I add in the between date range component.&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;See code below:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;EnquiryTest = SUMX ( FILTER ( '_enquiries,' '_enquiries'[_tsg_clientid_value] = 'accounts[accountid']) &amp;amp;&amp;amp;&lt;/P&gt;&lt;P&gt;'_enquiries'[Date] =&amp;gt; {08/01/2018} &amp;amp;&amp;amp;&lt;/P&gt;&lt;P&gt;'_enquiries'[Date] =&amp;lt; {08/01/2018}, _enquiries[Amount (Enq)] )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What is the proper syntax for a between date range?&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Wed, 22 Aug 2018 12:41:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/DAX-for-between-a-date-range-Q/m-p/496205#M15193</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-22T12:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: DAX for between a date range Q</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/DAX-for-between-a-date-range-Q/m-p/496218#M15195</link>
      <description>&lt;P&gt;First, sample data would help tremendously.&amp;nbsp;Please see this post regarding How to Get Your Question Answered Quickly: &lt;A href="https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank"&gt;https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That being said, I do not understand why you need a between date range, your formula looks like you just want a particular date, August 1st, 2018.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Aug 2018 12:44:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/DAX-for-between-a-date-range-Q/m-p/496218#M15195</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2018-08-22T12:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: DAX for between a date range Q</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/DAX-for-between-a-date-range-Q/m-p/496280#M15201</link>
      <description>&lt;P&gt;I am wanting a between dates filter.&amp;nbsp; I can't use the current month, because that won't work&amp;nbsp;when the month changes.&amp;nbsp; I would like to see the hard coding of a between date range.&amp;nbsp; What would it look like with the beginning of August to the end of August.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Aug 2018 13:39:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/DAX-for-between-a-date-range-Q/m-p/496280#M15201</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-22T13:39:18Z</dc:date>
    </item>
    <item>
      <title>Re: DAX for between a date range Q</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/DAX-for-between-a-date-range-Q/m-p/496471#M15205</link>
      <description>&lt;P&gt;It should be:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;EnquiryTest = SUMX ( FILTER ( '_enquiries,' '_enquiries'[_tsg_clientid_value] = 'accounts[accountid']) &amp;amp;&amp;amp;
'_enquiries'[Date] =&amp;gt; DATE(2018/8/1) &amp;amp;&amp;amp;
'_enquiries'[Date] =&amp;lt; DATE(2018/8/31), _enquiries[Amount (Enq)] )&lt;/PRE&gt;&lt;P&gt;But, would need sample data to be sure.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Aug 2018 16:08:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/DAX-for-between-a-date-range-Q/m-p/496471#M15205</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2018-08-22T16:08:23Z</dc:date>
    </item>
    <item>
      <title>Re: DAX for between a date range Q</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/DAX-for-between-a-date-range-Q/m-p/496584#M15207</link>
      <description>&lt;P&gt;Sadly, I am getting the following error message:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Too few arguments were passed to the DATE function. The minimum argument count for the function is 3.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have changed the / to , but that doesn't work.&amp;nbsp; If I change the month from 8 to 08 - it returns the same error.&amp;nbsp; Any thoughts?&lt;/P&gt;</description>
      <pubDate>Wed, 22 Aug 2018 18:50:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/DAX-for-between-a-date-range-Q/m-p/496584#M15207</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-22T18:50:18Z</dc:date>
    </item>
    <item>
      <title>Re: DAX for between a date range Q</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/DAX-for-between-a-date-range-Q/m-p/496610#M15208</link>
      <description>&lt;P&gt;Shoot, sorry about that, I meant to use commas:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;EnquiryTest = SUMX ( FILTER ( '_enquiries,' '_enquiries'[_tsg_clientid_value] = 'accounts[accountid']) &amp;amp;&amp;amp;
'_enquiries'[Date] =&amp;gt; DATE(2018,8,1) &amp;amp;&amp;amp;
'_enquiries'[Date] =&amp;lt; DATE(2018,8,31), _enquiries[Amount (Enq)] )&lt;/PRE&gt;</description>
      <pubDate>Wed, 22 Aug 2018 19:55:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/DAX-for-between-a-date-range-Q/m-p/496610#M15208</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2018-08-22T19:55:13Z</dc:date>
    </item>
    <item>
      <title>Re: DAX for between a date range Q</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/DAX-for-between-a-date-range-Q/m-p/497345#M15230</link>
      <description>&lt;P&gt;Thank you for all of the help, Greg.&amp;nbsp; I am still getting errors, but I have ordered some books to read over the weekend.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Respectfully,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;J Morningstar&lt;/P&gt;</description>
      <pubDate>Thu, 23 Aug 2018 11:51:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/DAX-for-between-a-date-range-Q/m-p/497345#M15230</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-23T11:51:30Z</dc:date>
    </item>
    <item>
      <title>Re: DAX for between a date range Q</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/DAX-for-between-a-date-range-Q/m-p/497515#M15250</link>
      <description>&lt;P&gt;EnqAmt =&lt;BR /&gt;SUMX (&lt;BR /&gt;FILTER ( _enquiries, _enquiries[_tsg_clientid_value] = accounts[accountid] &amp;amp;&amp;amp; _enquiries[Date] &amp;gt;= DATE(2018,08,01) &amp;amp;&amp;amp; _enquiries[Date] &amp;lt;= DATE(2018,08,31) ), _enquiries[Amount (Enq)]&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;#this_works&lt;/P&gt;</description>
      <pubDate>Thu, 23 Aug 2018 14:45:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/DAX-for-between-a-date-range-Q/m-p/497515#M15250</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-23T14:45:58Z</dc:date>
    </item>
  </channel>
</rss>

