<?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 QVD's with different names into 1 table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-QVD-s-with-different-names-into-1-table/m-p/207230#M1208911</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Rahul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This solution works already !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks Erik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Dec 2009 21:30:30 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-12-23T21:30:30Z</dc:date>
    <item>
      <title>Load QVD's with different names into 1 table</title>
      <link>https://community.qlik.com/t5/QlikView/Load-QVD-s-with-different-names-into-1-table/m-p/207227#M1208908</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;I need to upload history QVD's. These QVD are stored on adaily base and contain the month/year in the description. I don't see how I can automate this process.&lt;/P&gt;&lt;P&gt;Sample code for 2 months of data:&lt;/P&gt;&lt;P style="font-weight: bold; line-height: normal; margin: 0pt; mso-layout-grid-align: none"&gt;//load history QVD snapshots&lt;/P&gt;&lt;P style="font-style: italic; line-height: normal; margin: 0pt; mso-layout-grid-align: none"&gt;Hist_bedrijf:&lt;/P&gt;&lt;P style="line-height: normal; margin: 0pt; mso-layout-grid-align: none;"&gt;&lt;B&gt;load&lt;/B&gt; BedrijfLidNummer,&lt;/P&gt;&lt;P style="line-height: normal; margin: 0pt; mso-layout-grid-align: none;"&gt;KEY_BedrijfMaand &lt;B&gt;as&lt;/B&gt; H_maand&lt;/P&gt;&lt;P style="line-height: normal; margin: 0pt; mso-layout-grid-align: none;"&gt;&lt;B&gt;from&lt;/B&gt; bedrijfcommunity_200912.qvd(qvd);&lt;/P&gt;&lt;P style="line-height: normal; margin: 0pt; mso-layout-grid-align: none;"&gt;&lt;B&gt;load&lt;/B&gt; BedrijfLidNummer,&lt;/P&gt;&lt;P style="line-height: normal; margin: 0pt; mso-layout-grid-align: none;"&gt;KEY_BedrijfMaand &lt;B&gt;as&lt;/B&gt; H_maand&lt;/P&gt;&lt;P style="line-height: normal; margin: 0pt; mso-layout-grid-align: none;"&gt;&lt;B&gt;from&lt;/B&gt; bedrijfcommunity_200911.qvd(qvd);&lt;/P&gt;&lt;P style="line-height: normal; margin: 0pt; mso-layout-grid-align: none;"&gt;.......etc&lt;/P&gt;&lt;P style="line-height: normal; margin: 0pt; mso-layout-grid-align: none;"&gt;&lt;/P&gt;&lt;P style="line-height: normal; margin: 0pt; mso-layout-grid-align: none;"&gt;&lt;/P&gt;&lt;P style="line-height: normal; margin: 0pt; mso-layout-grid-align: none;"&gt;I would prefer to have a flexible code statement where the QVD name contains a variable.&lt;/P&gt;&lt;P style="line-height: normal; margin: 0pt; mso-layout-grid-align: none;"&gt;&lt;/P&gt;&lt;P style="line-height: normal; margin: 0pt; mso-layout-grid-align: none;"&gt;any suggestions ?&lt;/P&gt;&lt;P style="line-height: normal; margin: 0pt; mso-layout-grid-align: none;"&gt;&lt;/P&gt;&lt;P style="line-height: normal; margin: 0pt; mso-layout-grid-align: none;"&gt;Many thanks,&lt;/P&gt;&lt;P style="line-height: normal; margin: 0pt; mso-layout-grid-align: none;"&gt;&lt;/P&gt;&lt;P style="line-height: normal; margin: 0pt; mso-layout-grid-align: none;"&gt;Erik Pos&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Dec 2009 20:07:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-QVD-s-with-different-names-into-1-table/m-p/207227#M1208908</guid>
      <dc:creator />
      <dc:date>2009-12-23T20:07:00Z</dc:date>
    </item>
    <item>
      <title>Load QVD's with different names into 1 table</title>
      <link>https://community.qlik.com/t5/QlikView/Load-QVD-s-with-different-names-into-1-table/m-p/207228#M1208909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;i think you can do like this&lt;/P&gt;&lt;P&gt;let ForYear = Year(Today());&lt;/P&gt;&lt;P&gt;let ForMonthNo=NUM(Month(Today()));&lt;/P&gt;&lt;P&gt;let initialname='bedrijfcommunity_';&lt;/P&gt;&lt;P&gt;For Var=1 to $(ForMonthNo)&lt;/P&gt;&lt;P&gt;Load * from initialname&amp;amp; $(ForYear )&amp;amp;(Var)&amp;amp;'.qvd';&lt;/P&gt;&lt;P&gt;next&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help you........&lt;BR /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Dec 2009 20:49:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-QVD-s-with-different-names-into-1-table/m-p/207228#M1208909</guid>
      <dc:creator />
      <dc:date>2009-12-23T20:49:37Z</dc:date>
    </item>
    <item>
      <title>Load QVD's with different names into 1 table</title>
      <link>https://community.qlik.com/t5/QlikView/Load-QVD-s-with-different-names-into-1-table/m-p/207229#M1208910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use the following:&lt;/P&gt;&lt;P style="font-weight: bold; line-height: normal; margin: 0pt"&gt;load&lt;/P&gt;&lt;P style="margin:0pt;line-height:normal;"&gt;NUM#(left(right(filename(),10),6)) as qvd_date,&lt;/P&gt;&lt;P style="margin:0pt;line-height:normal;"&gt;BedrijfLidNummer,&lt;/P&gt;&lt;P style="margin:0pt;line-height:normal;"&gt;KEY_BedrijfMaand &lt;B&gt;as&lt;/B&gt; H_maand&lt;/P&gt;&lt;P&gt;&lt;B&gt;from&lt;/B&gt; bedrijfcommunity_??????.qvd(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will load all qvd and generate the month date linked to it.&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Sébastien&lt;BR /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Dec 2009 21:21:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-QVD-s-with-different-names-into-1-table/m-p/207229#M1208910</guid>
      <dc:creator />
      <dc:date>2009-12-23T21:21:36Z</dc:date>
    </item>
    <item>
      <title>Load QVD's with different names into 1 table</title>
      <link>https://community.qlik.com/t5/QlikView/Load-QVD-s-with-different-names-into-1-table/m-p/207230#M1208911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Rahul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This solution works already !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks Erik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Dec 2009 21:30:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-QVD-s-with-different-names-into-1-table/m-p/207230#M1208911</guid>
      <dc:creator />
      <dc:date>2009-12-23T21:30:30Z</dc:date>
    </item>
    <item>
      <title>Load QVD's with different names into 1 table</title>
      <link>https://community.qlik.com/t5/QlikView/Load-QVD-s-with-different-names-into-1-table/m-p/207231#M1208912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sebastien,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This solution is even more flexible and works fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks Erik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Dec 2009 21:32:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-QVD-s-with-different-names-into-1-table/m-p/207231#M1208912</guid>
      <dc:creator />
      <dc:date>2009-12-23T21:32:29Z</dc:date>
    </item>
  </channel>
</rss>

