<?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: In my report contain Last three months data only. in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/In-my-report-contain-Last-three-months-data-only/m-p/720617#M258815</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See this document: &lt;A href="https://community.qlik.com/docs/DOC-6668"&gt;Loading Multiple QVD files&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Oct 2014 09:17:36 GMT</pubDate>
    <dc:creator>Gysbert_Wassenaar</dc:creator>
    <dc:date>2014-10-14T09:17:36Z</dc:date>
    <item>
      <title>In my report contain Last three months data only.</title>
      <link>https://community.qlik.com/t5/QlikView/In-my-report-contain-Last-three-months-data-only/m-p/720614#M258812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;In my report contain Last three months data only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Presuppose current month data will be updating every day but last two (AUG, SEP) Months qvds data not updating every day why means it was already created(Those were constant). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After completion of this month then my script will extract November month data then my report Contain last three month means SEP, OCT, NOV only Now here November month qvd will be every day updating.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is my scenario how we can write the code. Could you please send to me any sample applications.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Advance Thanks,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Munna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2014 08:41:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/In-my-report-contain-Last-three-months-data-only/m-p/720614#M258812</guid>
      <dc:creator>Srinivas</dc:creator>
      <dc:date>2014-10-14T08:41:00Z</dc:date>
    </item>
    <item>
      <title>Re: In my report contain Last three months data only.</title>
      <link>https://community.qlik.com/t5/QlikView/In-my-report-contain-Last-three-months-data-only/m-p/720615#M258813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="http://www.qlikcommunity.com/thread/60558"&gt;http://www.qlikcommunity.com/thread/60558&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HI Munna&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can restrict the data in your query to only return the last 3 months if that is your requirement and you are allowed to change the data query.&amp;nbsp; in SQL you would use the DATEADD(M,-3,&amp;lt;YourDate&amp;gt;) Function for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not bring the data into Qlik with the date condition applied on load. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above thread should help get you started on date filters in Qlik.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2014 09:10:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/In-my-report-contain-Last-three-months-data-only/m-p/720615#M258813</guid>
      <dc:creator>ogster1974</dc:creator>
      <dc:date>2014-10-14T09:10:30Z</dc:date>
    </item>
    <item>
      <title>Re: In my report contain Last three months data only.</title>
      <link>https://community.qlik.com/t5/QlikView/In-my-report-contain-Last-three-months-data-only/m-p/720616#M258814</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;if you have QVD (Data.QVD) storing 3 months data Aug,Sep,Oct then write the script like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;//from QVD&lt;/P&gt;&lt;P&gt;Load * from Dat.qvd(qvd)&lt;/P&gt;&lt;P&gt;where match(Month,Month(AddMonths(today(),-1)),Month(AddMonths(today(),-2)));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Current month data from database&lt;/P&gt;&lt;P&gt;Load * &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sql&lt;/P&gt;&lt;P&gt;select * from table where month=month(getday())&lt;/P&gt;&lt;P&gt;where match(Month,Month(AddMonths(today(),-1)),Month(AddMonths(today(),-2)));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;store Data into Data.QVD(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop table Data;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2014 09:17:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/In-my-report-contain-Last-three-months-data-only/m-p/720616#M258814</guid>
      <dc:creator />
      <dc:date>2014-10-14T09:17:03Z</dc:date>
    </item>
    <item>
      <title>Re: In my report contain Last three months data only.</title>
      <link>https://community.qlik.com/t5/QlikView/In-my-report-contain-Last-three-months-data-only/m-p/720617#M258815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See this document: &lt;A href="https://community.qlik.com/docs/DOC-6668"&gt;Loading Multiple QVD files&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2014 09:17:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/In-my-report-contain-Last-three-months-data-only/m-p/720617#M258815</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2014-10-14T09:17:36Z</dc:date>
    </item>
  </channel>
</rss>

