<?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: How to filter date to restrict data in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403576#M1169232</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can not share that application but may be a snapshot.&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="21782" class="jive-image-thumbnail jive-image" onclick="" alt="report.JPG" src="https://community.qlik.com/legacyfs/online/21782_report.JPG" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Sep 2012 06:33:29 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-09-13T06:33:29Z</dc:date>
    <item>
      <title>How to filter date to restrict data</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403569#M1169225</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;I want to apply filter on year, I am able to see many years of data like 2010,2011,2012 etc.. I would like to see present data only i.e. from JAN 2012- till date.&lt;/P&gt;&lt;P&gt;How can I acheive this? Here I am making 'changes into Server Monitoring Report'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;anta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2012 06:05:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403569#M1169225</guid>
      <dc:creator />
      <dc:date>2012-09-13T06:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter date to restrict data</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403570#M1169226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use &lt;/P&gt;&lt;P&gt;load *&lt;/P&gt;&lt;P&gt;from *** . qvd &lt;/P&gt;&lt;P&gt;where year(Datefield)='2012'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load *&lt;/P&gt;&lt;P&gt;from *** . qvd &lt;/P&gt;&lt;P&gt;where year(Datefield)&amp;gt;=year(today())&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2012 06:10:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403570#M1169226</guid>
      <dc:creator>rajni_batra</dc:creator>
      <dc:date>2012-09-13T06:10:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter date to restrict data</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403571#M1169227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DO I need to use both these laod statement.? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2012 06:12:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403571#M1169227</guid>
      <dc:creator />
      <dc:date>2012-09-13T06:12:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter date to restrict data</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403572#M1169228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, for example if we assume below code is it correct? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QVSTime:&lt;/P&gt;&lt;P&gt;Load DISTINCT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;DateMinuteKey,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Date(floor(Timestamp)) as date,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;weekday(Timestamp) as Weekday,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Year(Timestamp) as Year, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Month(Timestamp) as Month, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;num(Month(Timestamp)) as MonthNbr,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Week(Timestamp) as Week, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Day(Timestamp) as Day,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Hour(Time(Timestamp)) as Hour,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Minute(Time(Timestamp)) as Minute,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Date(MonthStart(Timestamp),'MMM-YYYY') as YearMonth,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;WeekStart(Timestamp) as YearWeek&lt;/P&gt;&lt;P&gt;resident $(myFile) where Year(Timestamp)='2012';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to fetch data from 2012 only. I don't need previous years of data now.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2012 06:16:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403572#M1169228</guid>
      <dc:creator />
      <dc:date>2012-09-13T06:16:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter date to restrict data</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403573#M1169229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes this is correct&lt;/P&gt;&lt;P&gt;reload this n check the output i hope u will get ur&amp;nbsp; desired result... &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2012 06:20:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403573#M1169229</guid>
      <dc:creator>rajni_batra</dc:creator>
      <dc:date>2012-09-13T06:20:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter date to restrict data</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403574#M1169230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Already did but still I am able to see 2011 data also &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2012 06:21:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403574#M1169230</guid>
      <dc:creator />
      <dc:date>2012-09-13T06:21:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter date to restrict data</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403575#M1169231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can u share ur sample app&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2012 06:22:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403575#M1169231</guid>
      <dc:creator>rajni_batra</dc:creator>
      <dc:date>2012-09-13T06:22:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter date to restrict data</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403576#M1169232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can not share that application but may be a snapshot.&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="21782" class="jive-image-thumbnail jive-image" onclick="" alt="report.JPG" src="https://community.qlik.com/legacyfs/online/21782_report.JPG" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2012 06:33:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403576#M1169232</guid>
      <dc:creator />
      <dc:date>2012-09-13T06:33:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter date to restrict data</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403577#M1169233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But this should not happen i have attched a sample please check that out&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2012 06:38:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403577#M1169233</guid>
      <dc:creator>rajni_batra</dc:creator>
      <dc:date>2012-09-13T06:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter date to restrict data</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403578#M1169234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi try using thisYear(Timestamp)&amp;lt;&amp;gt;Year that you want to show.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kamal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2012 08:46:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403578#M1169234</guid>
      <dc:creator>kamalqlik</dc:creator>
      <dc:date>2012-09-13T08:46:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter date to restrict data</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403579#M1169235</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;Still not working. I want to removed the other years from filer list. Please check the above screen shot.&lt;/P&gt;&lt;P&gt;I am able to see 2010,2011 n 2012's data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Sep 2012 09:06:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403579#M1169235</guid>
      <dc:creator />
      <dc:date>2012-09-14T09:06:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter date to restrict data</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403580#M1169236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Post your load script.&lt;/P&gt;&lt;P&gt;Or at least the table structure screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Sep 2012 09:19:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403580#M1169236</guid>
      <dc:creator>whiteline</dc:creator>
      <dc:date>2012-09-14T09:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter date to restrict data</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403581#M1169237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG __jive_id="21848" class="jive-image-thumbnail jive-image" onclick="" alt="table_structure.JPG" src="https://community.qlik.com/legacyfs/online/21848_table_structure.JPG" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Sep 2012 09:35:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403581#M1169237</guid>
      <dc:creator />
      <dc:date>2012-09-14T09:35:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter date to restrict data</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403582#M1169238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try:&lt;/P&gt;&lt;P&gt;where Year(Timestamp)=2012;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Sep 2012 10:38:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403582#M1169238</guid>
      <dc:creator>whiteline</dc:creator>
      <dc:date>2012-09-14T10:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter date to restrict data</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403583#M1169239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You've got a year showing of 1924, which is a bit early for Qlikview log data &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;.&amp;nbsp; I'd be tempted to find out where that came from first.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;flipside&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Sep 2012 11:14:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403583#M1169239</guid>
      <dc:creator>flipside</dc:creator>
      <dc:date>2012-09-14T11:14:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter date to restrict data</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403584#M1169240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's approximately =Year(9000)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Sep 2012 11:19:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403584#M1169240</guid>
      <dc:creator>whiteline</dc:creator>
      <dc:date>2012-09-14T11:19:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter date to restrict data</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403585#M1169241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, we are just able to see that year but no data found for that particular year..&lt;/P&gt;&lt;P&gt;I don't why filter is not working for 2012. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Sep 2012 05:08:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403585#M1169241</guid>
      <dc:creator />
      <dc:date>2012-09-17T05:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter date to restrict data</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403586#M1169242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry whiteline but I am not getting ypur point here...&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;whiteline wrote:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's approximately =Year(9000)&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Sep 2012 05:11:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403586#M1169242</guid>
      <dc:creator />
      <dc:date>2012-09-17T05:11:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter date to restrict data</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403587#M1169243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your data structure Year appearse only in one table with one load.&lt;/P&gt;&lt;P&gt;If there is 1924 year, this means that somehow Timestamp was ~9000.&lt;/P&gt;&lt;P&gt;I think you should carefuly look throug your input data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Sep 2012 05:46:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-date-to-restrict-data/m-p/403587#M1169243</guid>
      <dc:creator>whiteline</dc:creator>
      <dc:date>2012-09-17T05:46:30Z</dc:date>
    </item>
  </channel>
</rss>

