<?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: loading qvd? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/loading-qvd/m-p/717832#M1059899</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;pls tell me how to write script for this load qvds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Sep 2014 11:36:24 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-09-29T11:36:24Z</dc:date>
    <item>
      <title>loading qvd?</title>
      <link>https://community.qlik.com/t5/QlikView/loading-qvd/m-p/717830#M1059896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here i have a qvd up to Aug&amp;nbsp; month(creating monthly qvds)&amp;nbsp; but i dont know whether qvd is avaliable for&amp;nbsp; Sep month&lt;/P&gt;&lt;P&gt;here i want write expression for like&lt;/P&gt;&lt;P&gt;load all qvds and if Sep qvd is avaliable then&amp;nbsp; load&amp;nbsp; otherwise leave it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2014 11:07:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-qvd/m-p/717830#M1059896</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-29T11:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: loading qvd?</title>
      <link>https://community.qlik.com/t5/QlikView/loading-qvd/m-p/717831#M1059898</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;you can simply write:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set Errormode = 0 ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in your script.. it will ignor error if script will not find sep qvd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Sushil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2014 11:34:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-qvd/m-p/717831#M1059898</guid>
      <dc:creator>sushil353</dc:creator>
      <dc:date>2014-09-29T11:34:43Z</dc:date>
    </item>
    <item>
      <title>Re: loading qvd?</title>
      <link>https://community.qlik.com/t5/QlikView/loading-qvd/m-p/717832#M1059899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;pls tell me how to write script for this load qvds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2014 11:36:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-qvd/m-p/717832#M1059899</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-29T11:36:24Z</dc:date>
    </item>
    <item>
      <title>Re: loading qvd?</title>
      <link>https://community.qlik.com/t5/QlikView/loading-qvd/m-p/717833#M1059901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if (FileSize('201409.qvd')&amp;gt;0) then&lt;/P&gt;&lt;P&gt;&amp;nbsp; trace load;&lt;/P&gt;&lt;P&gt;&amp;nbsp; LOAD *&lt;/P&gt;&lt;P&gt;&amp;nbsp; FROM 201409.qvd (qvd);&lt;/P&gt;&lt;P&gt;ELSE &lt;/P&gt;&lt;P&gt;&amp;nbsp; trace skip;&lt;/P&gt;&lt;P&gt;end if;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2014 11:38:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-qvd/m-p/717833#M1059901</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2014-09-29T11:38:27Z</dc:date>
    </item>
    <item>
      <title>Re: loading qvd?</title>
      <link>https://community.qlik.com/t5/QlikView/loading-qvd/m-p/717834#M1059903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you need to write for loop for this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first of all get the values of each month in a table say monthtable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then say want to load data for 12 months&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET Errormode = 0;&lt;/P&gt;&lt;P&gt;for i=0 to 11&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET monthtable= peek('Month',$(i),'monthtable')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;* &lt;/P&gt;&lt;P&gt;from Table_$(monthtable).qvd(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Sushil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2014 11:42:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-qvd/m-p/717834#M1059903</guid>
      <dc:creator>sushil353</dc:creator>
      <dc:date>2014-09-29T11:42:20Z</dc:date>
    </item>
    <item>
      <title>Re: loading qvd?</title>
      <link>https://community.qlik.com/t5/QlikView/loading-qvd/m-p/717835#M1059905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, see this hope helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF (isNull(qvdCreateTime('../2_QVD/201409.qvd'))) THEN&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; LOAD *&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; FROM 201409.qvd (qvd); &lt;/P&gt;&lt;P&gt;ELSE&lt;/P&gt;&lt;P&gt;&amp;nbsp; Let MiMensaje = '1' &amp;amp; ' ERROR' &amp;amp; ' 201409.qvd' ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; trace $(MiMensaje);&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;END IF;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2014 12:06:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-qvd/m-p/717835#M1059905</guid>
      <dc:creator>fkeuroglian</dc:creator>
      <dc:date>2014-09-29T12:06:30Z</dc:date>
    </item>
    <item>
      <title>Re: loading qvd?</title>
      <link>https://community.qlik.com/t5/QlikView/loading-qvd/m-p/717836#M1059907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can't you simply use * to load all QVD's that are present in the directory rather than naming them specifically? If September is there it will be load, if it isn't obviously it won't.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2014 12:07:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-qvd/m-p/717836#M1059907</guid>
      <dc:creator>shane_spencer</dc:creator>
      <dc:date>2014-09-29T12:07:59Z</dc:date>
    </item>
    <item>
      <title>Re: loading qvd?</title>
      <link>https://community.qlik.com/t5/QlikView/loading-qvd/m-p/717837#M1059908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hy, try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;for &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Each&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #808080; font-size: 8pt;"&gt;&lt;EM&gt;file&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;in&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;FileList&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; ('Your Directory\*.qvd') &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Temp:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;load&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;*&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;from&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #808080; font-size: 8pt;"&gt;&lt;EM&gt;$(file)&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;qvd&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;next file;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;best regards&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2014 12:12:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-qvd/m-p/717837#M1059908</guid>
      <dc:creator>ppmc</dc:creator>
      <dc:date>2014-09-29T12:12:56Z</dc:date>
    </item>
  </channel>
</rss>

