<?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 Rows if Date Entered within last 7 days in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Count-Rows-if-Date-Entered-within-last-7-days/m-p/536020#M200299</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Jul 2013 19:12:22 GMT</pubDate>
    <dc:creator>alec1982</dc:creator>
    <dc:date>2013-07-29T19:12:22Z</dc:date>
    <item>
      <title>Count Rows if Date Entered within last 7 days</title>
      <link>https://community.qlik.com/t5/QlikView/Count-Rows-if-Date-Entered-within-last-7-days/m-p/536015#M200294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a table with couple of fields:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Name, Date Entered&lt;/P&gt;&lt;P&gt;A, 07/25/2013&lt;/P&gt;&lt;P&gt;B,07/26/2013&lt;/P&gt;&lt;P&gt;C, 05/05/2013&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to do Count of Names if it was entered in the lat 7 days..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nest,&lt;/P&gt;&lt;P&gt;Alec&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jul 2013 17:22:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-Rows-if-Date-Entered-within-last-7-days/m-p/536015#M200294</guid>
      <dc:creator>alec1982</dc:creator>
      <dc:date>2013-07-29T17:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: Count Rows if Date Entered within last 7 days</title>
      <link>https://community.qlik.com/t5/QlikView/Count-Rows-if-Date-Entered-within-last-7-days/m-p/536016#M200295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If([Date Entered] &amp;gt;= (Date(Today())-7), Count(Name))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jul 2013 17:30:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-Rows-if-Date-Entered-within-last-7-days/m-p/536016#M200295</guid>
      <dc:creator>jpapador</dc:creator>
      <dc:date>2013-07-29T17:30:38Z</dc:date>
    </item>
    <item>
      <title>Re: Count Rows if Date Entered within last 7 days</title>
      <link>https://community.qlik.com/t5/QlikView/Count-Rows-if-Date-Entered-within-last-7-days/m-p/536017#M200296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for the reply but for some reasons in the data there are future dates too..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Alec&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jul 2013 17:47:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-Rows-if-Date-Entered-within-last-7-days/m-p/536017#M200296</guid>
      <dc:creator>alec1982</dc:creator>
      <dc:date>2013-07-29T17:47:56Z</dc:date>
    </item>
    <item>
      <title>Re: Count Rows if Date Entered within last 7 days</title>
      <link>https://community.qlik.com/t5/QlikView/Count-Rows-if-Date-Entered-within-last-7-days/m-p/536018#M200297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then add a condition that it cannot be greater than today.&amp;nbsp; For example,&lt;/P&gt;&lt;P&gt;If([Date Entered] &amp;gt;= (Date(Today())-7) and [Date Entered] &amp;lt;= Date(Today()) , Count(Name))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jul 2013 18:01:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-Rows-if-Date-Entered-within-last-7-days/m-p/536018#M200297</guid>
      <dc:creator>jpapador</dc:creator>
      <dc:date>2013-07-29T18:01:13Z</dc:date>
    </item>
    <item>
      <title>Re: Count Rows if Date Entered within last 7 days</title>
      <link>https://community.qlik.com/t5/QlikView/Count-Rows-if-Date-Entered-within-last-7-days/m-p/536019#M200298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A small correction:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;count (distinct if([Date Entered] &amp;gt;= Date(Today())-7 and [Date Entered] &amp;lt;=today(), Name))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jul 2013 19:02:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-Rows-if-Date-Entered-within-last-7-days/m-p/536019#M200298</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-29T19:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: Count Rows if Date Entered within last 7 days</title>
      <link>https://community.qlik.com/t5/QlikView/Count-Rows-if-Date-Entered-within-last-7-days/m-p/536020#M200299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jul 2013 19:12:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-Rows-if-Date-Entered-within-last-7-days/m-p/536020#M200299</guid>
      <dc:creator>alec1982</dc:creator>
      <dc:date>2013-07-29T19:12:22Z</dc:date>
    </item>
  </channel>
</rss>

