<?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 Loading QVD's in a folder in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Loading-QVD-s-in-a-folder/m-p/394726#M694507</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;Scenario:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am having 6 QVD's&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P_Employee.QVD&lt;/P&gt;&lt;P&gt;P_Customer.QVD&lt;/P&gt;&lt;P&gt;P_Vendor.QVD&lt;/P&gt;&lt;P&gt;P_Sales.QVD&lt;/P&gt;&lt;P&gt;P_CustomerContact.QVD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to load all QVD's but without loading a specific QVD in a folder (i.e. P_Vendor.QVD). for this, I wrote a code given below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;$(RawQvdPath)\P*.QVD&lt;/P&gt;&lt;P&gt;(qvd) Where FileName() &amp;lt;&amp;gt; 'P_Vendor.QVD';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am able to see it in the Table Viewer. Please suggest, how i make QV doesn't consider it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 May 2013 09:30:41 GMT</pubDate>
    <dc:creator>gaurav2017</dc:creator>
    <dc:date>2013-05-22T09:30:41Z</dc:date>
    <item>
      <title>Loading QVD's in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-QVD-s-in-a-folder/m-p/394726#M694507</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;Scenario:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am having 6 QVD's&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P_Employee.QVD&lt;/P&gt;&lt;P&gt;P_Customer.QVD&lt;/P&gt;&lt;P&gt;P_Vendor.QVD&lt;/P&gt;&lt;P&gt;P_Sales.QVD&lt;/P&gt;&lt;P&gt;P_CustomerContact.QVD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to load all QVD's but without loading a specific QVD in a folder (i.e. P_Vendor.QVD). for this, I wrote a code given below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;$(RawQvdPath)\P*.QVD&lt;/P&gt;&lt;P&gt;(qvd) Where FileName() &amp;lt;&amp;gt; 'P_Vendor.QVD';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am able to see it in the Table Viewer. Please suggest, how i make QV doesn't consider it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2013 09:30:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-QVD-s-in-a-folder/m-p/394726#M694507</guid>
      <dc:creator>gaurav2017</dc:creator>
      <dc:date>2013-05-22T09:30:41Z</dc:date>
    </item>
    <item>
      <title>Re: Loading QVD's in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-QVD-s-in-a-folder/m-p/394727#M694508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this approach:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for each File in filelist ('$(RawQvdPath)\*.qvd') &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;LET vTableName =&amp;nbsp; Subfield(Subfield('$(File)', '\', SubstringCount('$(File)', '\') + 1), '.', 1); &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;if $(vTableName) &amp;lt;&amp;gt; "P_Vendor" then &lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;$(vTableName): &lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;LOAD * FROM $(File) (QVD); &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;end if &lt;/P&gt;&lt;P&gt;nextFile&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2013 12:05:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-QVD-s-in-a-folder/m-p/394727#M694508</guid>
      <dc:creator />
      <dc:date>2013-05-22T12:05:51Z</dc:date>
    </item>
  </channel>
</rss>

