<?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 need help in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/need-help/m-p/755370#M1028057</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need a clarification on while loading the data from QVD into qlikview application&lt;/P&gt;&lt;P&gt;a QVD, which consists years of data (2006 - 2012)&lt;/P&gt;&lt;P&gt;While loading the data into qlikview from QVD,here my requirement is load only 3years of data which is from 2010 to 2012 instead of loading all the data from QVD.&lt;/P&gt;&lt;P&gt;In this scenario how can I accomplish my requirement dynamically?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz help me out in this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Feb 2015 18:29:38 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-02-19T18:29:38Z</dc:date>
    <item>
      <title>need help</title>
      <link>https://community.qlik.com/t5/QlikView/need-help/m-p/755370#M1028057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need a clarification on while loading the data from QVD into qlikview application&lt;/P&gt;&lt;P&gt;a QVD, which consists years of data (2006 - 2012)&lt;/P&gt;&lt;P&gt;While loading the data into qlikview from QVD,here my requirement is load only 3years of data which is from 2010 to 2012 instead of loading all the data from QVD.&lt;/P&gt;&lt;P&gt;In this scenario how can I accomplish my requirement dynamically?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz help me out in this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Feb 2015 18:29:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help/m-p/755370#M1028057</guid>
      <dc:creator />
      <dc:date>2015-02-19T18:29:38Z</dc:date>
    </item>
    <item>
      <title>Re: need help</title>
      <link>https://community.qlik.com/t5/QlikView/need-help/m-p/755371#M1028058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Simply add a WHERE clause at the end &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;of the LOAD &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;EM&gt;WHERE(YEAR &amp;gt;= '2010' AND &lt;SPAN style="font-size: 13.3333330154419px;"&gt;YEAR &amp;lt;= '2012' &lt;/SPAN&gt;);&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;if 2010 and 2012 is dynamically decided during load you can use variables instead of literals&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Feb 2015 18:35:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help/m-p/755371#M1028058</guid>
      <dc:creator />
      <dc:date>2015-02-19T18:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: need help</title>
      <link>https://community.qlik.com/t5/QlikView/need-help/m-p/755372#M1028059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can load the max(year) from the QVD before it is actually loaded to be able to dynamically pull your data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MaxYear:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; max(year) as Year&lt;/P&gt;&lt;P&gt;from myQvd.qvd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vMaxYear = Peek('Year',-1,'MaxYear');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop Table MaxYear;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use that variable then to calculate your rolling years.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Feb 2015 18:38:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help/m-p/755372#M1028059</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-19T18:38:45Z</dc:date>
    </item>
    <item>
      <title>Re: need help</title>
      <link>https://community.qlik.com/t5/QlikView/need-help/m-p/755373#M1028060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you please elaborate this again???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Feb 2015 19:14:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help/m-p/755373#M1028060</guid>
      <dc:creator />
      <dc:date>2015-02-19T19:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: need help</title>
      <link>https://community.qlik.com/t5/QlikView/need-help/m-p/755374#M1028062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;// test data in qvd (2006-2012)&lt;/P&gt;&lt;P&gt;//&lt;/P&gt;&lt;P&gt;&lt;EM&gt;DIRECTORY;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;for i=2006 to 2012&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; aaaa:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; load $(i) as year , rowno() as id AutoGenerate&amp;nbsp; 100;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;NEXT;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;store aaaa into aaaa.qvd (qvd);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;DROP Table aaaa;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// get max year from qvd file and load&lt;/P&gt;&lt;P&gt;//&lt;/P&gt;&lt;P&gt;&lt;EM&gt;t:&amp;nbsp; &lt;/EM&gt;&lt;EM&gt;LOAD max(year) as MaxYear &lt;/EM&gt;&lt;EM&gt;from aaaa.qvd (qvd);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;let vMaxYear=Peek('MaxYear')-2;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;final: &lt;/EM&gt;&lt;EM&gt;load * from aaaa.qvd (qvd) where year &amp;gt;= $(vMaxYear);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;DROP Table t;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Feb 2015 19:17:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help/m-p/755374#M1028062</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2015-02-19T19:17:59Z</dc:date>
    </item>
    <item>
      <title>Re: need help</title>
      <link>https://community.qlik.com/t5/QlikView/need-help/m-p/755375#M1028066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Loading the max year will give you a way to work dynamically. If your max year keeps going up, you'll need to adjust based upon that. So say max year is 2012 and you need to go back to 2010 you can say $(vMaxYear) - 2 to give you 2010. So coding this like Erdal did above, you'd want to use this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 13.3333320617676px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;WHERE(YEAR &amp;gt;= '$(vMaxYear)-2' AND &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;YEAR &amp;lt;= '$(vMaxYear)' &lt;/SPAN&gt;);&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Feb 2015 19:20:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help/m-p/755375#M1028066</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-19T19:20:51Z</dc:date>
    </item>
    <item>
      <title>Re: need help</title>
      <link>https://community.qlik.com/t5/QlikView/need-help/m-p/755376#M1028067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for reply&lt;/P&gt;&lt;P&gt;I need one more clarification&lt;/P&gt;&lt;P&gt;To read single qvd into qlikview from the qvd source path(Load * from &amp;lt;qvdpath&amp;gt;&amp;lt;qvdname&amp;gt;.qvd(qvd))&lt;/P&gt;&lt;P&gt;But how to read multiple qvds at a time, is it possible???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls suggest!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Feb 2015 21:12:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help/m-p/755376#M1028067</guid>
      <dc:creator />
      <dc:date>2015-02-19T21:12:14Z</dc:date>
    </item>
    <item>
      <title>Re: need help</title>
      <link>https://community.qlik.com/t5/QlikView/need-help/m-p/755377#M1028068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;You can use the * as a wildcard to load multiple QVD's at once. Ex: OrderData*.qvd will load OrderData2014 and OrderData2015 at the same time.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Load * from &amp;lt;qvdpath&amp;gt;*.qvd(qvd))&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Feb 2015 21:15:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help/m-p/755377#M1028068</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-19T21:15:16Z</dc:date>
    </item>
  </channel>
</rss>

