<?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 between dates in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/count-between-dates/m-p/961796#M330024</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Pls go through.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Consider that you have selected 03/12/2105&lt;/P&gt;&lt;P&gt;If you want 01/01/2015 to 03/12/2015, use&lt;/P&gt;&lt;P&gt;SUM({&amp;lt; Year=, Quarter=, Month=, Week=, Date = {"&amp;gt;=$(=YearStart(Max(Date)))&amp;lt;=$(=Max(Date))"}&amp;gt;}Sales)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want min Date to 03/12/2015, use&lt;/P&gt;&lt;P&gt;SUM({&amp;lt; Year=, Quarter=, Month=, Week=, Date = {"&amp;gt;=$(=Min({1}Date))&amp;lt;=$(=Max(Date))"}&amp;gt;}Sales)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Dec 2015 08:37:12 GMT</pubDate>
    <dc:creator>ajsjoshua</dc:creator>
    <dc:date>2015-12-21T08:37:12Z</dc:date>
    <item>
      <title>count between dates</title>
      <link>https://community.qlik.com/t5/QlikView/count-between-dates/m-p/961795#M330023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;hi all,&lt;/P&gt;&lt;P&gt;I want to count number of transactions from registration date and one week further, for example:(DD/MM/YYYY)&lt;/P&gt;&lt;P&gt;client register in 01/01/2015, I want to count how many trans. he made until 07/01/2015.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;&lt;P&gt;Ilan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2015 08:33:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/count-between-dates/m-p/961795#M330023</guid>
      <dc:creator>ilanbaruch</dc:creator>
      <dc:date>2015-12-21T08:33:49Z</dc:date>
    </item>
    <item>
      <title>Re: count between dates</title>
      <link>https://community.qlik.com/t5/QlikView/count-between-dates/m-p/961796#M330024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Pls go through.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Consider that you have selected 03/12/2105&lt;/P&gt;&lt;P&gt;If you want 01/01/2015 to 03/12/2015, use&lt;/P&gt;&lt;P&gt;SUM({&amp;lt; Year=, Quarter=, Month=, Week=, Date = {"&amp;gt;=$(=YearStart(Max(Date)))&amp;lt;=$(=Max(Date))"}&amp;gt;}Sales)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want min Date to 03/12/2015, use&lt;/P&gt;&lt;P&gt;SUM({&amp;lt; Year=, Quarter=, Month=, Week=, Date = {"&amp;gt;=$(=Min({1}Date))&amp;lt;=$(=Max(Date))"}&amp;gt;}Sales)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2015 08:37:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/count-between-dates/m-p/961796#M330024</guid>
      <dc:creator>ajsjoshua</dc:creator>
      <dc:date>2015-12-21T08:37:12Z</dc:date>
    </item>
    <item>
      <title>Re: count between dates</title>
      <link>https://community.qlik.com/t5/QlikView/count-between-dates/m-p/961797#M330025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can transform a date into a numerical representation with the function Num(myDate), just add to your result the value 7, then simply count your transactions where transaction date is &amp;gt;= Num(DateStart) and &amp;lt;= Num(DateStart)+7&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let me know&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2015 08:37:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/count-between-dates/m-p/961797#M330025</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2015-12-21T08:37:33Z</dc:date>
    </item>
    <item>
      <title>Re: count between dates</title>
      <link>https://community.qlik.com/t5/QlikView/count-between-dates/m-p/961798#M330026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Count({&amp;lt;MsaterCalDate={"&amp;gt;=$(=Only(TransactionDate))&amp;lt;=$(=Date(Only(TransactionDate)+6, 'DD/MM/YYYY'))"}&amp;gt;}transaction)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assuming your MasterCalDate would be of similar date format ( 'DD/MM/YYYY')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2015 08:39:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/count-between-dates/m-p/961798#M330026</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2015-12-21T08:39:16Z</dc:date>
    </item>
  </channel>
</rss>

