<?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 Load multiple QVDS from a Folder one by one and store in other folder in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-multiple-QVDS-from-a-Folder-one-by-one-and-store-in-other/m-p/1557840#M743166</link>
    <description>&lt;P&gt;Hello Friends,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; I have few QVDs(number not defined) in folder with following format:&lt;/P&gt;&lt;P&gt;test_05032018&lt;/P&gt;&lt;P&gt;test_06032018&lt;/P&gt;&lt;P&gt;test_07032018&lt;/P&gt;&lt;P&gt;test_08032018&lt;/P&gt;&lt;P&gt;I have to take each file one by one , make few changes and store with same name in another folder/same folder.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>nachiket_shinde</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>Load multiple QVDS from a Folder one by one and store in other folder</title>
      <link>https://community.qlik.com/t5/QlikView/Load-multiple-QVDS-from-a-Folder-one-by-one-and-store-in-other/m-p/1557840#M743166</link>
      <description>&lt;P&gt;Hello Friends,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; I have few QVDs(number not defined) in folder with following format:&lt;/P&gt;&lt;P&gt;test_05032018&lt;/P&gt;&lt;P&gt;test_06032018&lt;/P&gt;&lt;P&gt;test_07032018&lt;/P&gt;&lt;P&gt;test_08032018&lt;/P&gt;&lt;P&gt;I have to take each file one by one , make few changes and store with same name in another folder/same folder.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-multiple-QVDS-from-a-Folder-one-by-one-and-store-in-other/m-p/1557840#M743166</guid>
      <dc:creator>nachiket_shinde</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Load multiple QVDS from a Folder one by one and store in other folder</title>
      <link>https://community.qlik.com/t5/QlikView/Load-multiple-QVDS-from-a-Folder-one-by-one-and-store-in-other/m-p/1557859#M743167</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/539"&gt;@nachiket_shinde&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try the following code:&lt;/P&gt;&lt;PRE&gt;SET vInputFolder = Input;
SET vOutputFolder = Output;

FOR Each vCurFile in FileList('$(vInputFolder)\test_*.qvd')

	LET vCurFileName = SubField(vCurFile, '$(vInputFolder)\', 2);
	
	tmp:
	LOAD
		*
	From [$(vCurFile)] (qvd);
	
	STORE tmp into '$(vOutputFolder)\$(vCurFileName)' (qvd);
	
	DROP Table tmp;

NEXT //FOR Each vCurFile in FileList('$(vInputFolder)\test_*.qvd')&lt;/PRE&gt;</description>
      <pubDate>Mon, 18 Mar 2019 12:29:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-multiple-QVDS-from-a-Folder-one-by-one-and-store-in-other/m-p/1557859#M743167</guid>
      <dc:creator>mrybalko</dc:creator>
      <dc:date>2019-03-18T12:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: Load multiple QVDS from a Folder one by one and store in other folder</title>
      <link>https://community.qlik.com/t5/QlikView/Load-multiple-QVDS-from-a-Folder-one-by-one-and-store-in-other/m-p/1557941#M743168</link>
      <description>&lt;P&gt;What if QVDs have different number of columns?&lt;/P&gt;</description>
      <pubDate>Mon, 18 Mar 2019 14:06:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-multiple-QVDS-from-a-Folder-one-by-one-and-store-in-other/m-p/1557941#M743168</guid>
      <dc:creator>nachiket_shinde</dc:creator>
      <dc:date>2019-03-18T14:06:06Z</dc:date>
    </item>
    <item>
      <title>Re: Load multiple QVDS from a Folder one by one and store in other folder</title>
      <link>https://community.qlik.com/t5/QlikView/Load-multiple-QVDS-from-a-Folder-one-by-one-and-store-in-other/m-p/1557956#M743169</link>
      <description>&lt;P&gt;When you use LOAD * construction it doesn't matter.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Mar 2019 14:35:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-multiple-QVDS-from-a-Folder-one-by-one-and-store-in-other/m-p/1557956#M743169</guid>
      <dc:creator>mrybalko</dc:creator>
      <dc:date>2019-03-18T14:35:08Z</dc:date>
    </item>
  </channel>
</rss>

