<?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: Dynamic Data Source Load into QlikView and create QVD? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Dynamic-Data-Source-Load-into-QlikView-and-create-QVD/m-p/768228#M272845</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. This helped.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Apr 2015 15:50:48 GMT</pubDate>
    <dc:creator>naziralala</dc:creator>
    <dc:date>2015-04-27T15:50:48Z</dc:date>
    <item>
      <title>Dynamic Data Source Load into QlikView and create QVD?</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Data-Source-Load-into-QlikView-and-create-QVD/m-p/768225#M272842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am assigned a project, which involves loading data from multiple excels having same tabs in all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This excel data from 3 tabs need to be loaded into qlik view and create 3 qvd's.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to create a data load from multiple excels into these 3 qvd's, and there has to be no code change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Currently, I have 3 excels loading data...but if they were to be 10 excels, 25 excels,etc?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone help me in getting this logic and code...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Jan 2015 22:12:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Data-Source-Load-into-QlikView-and-create-QVD/m-p/768225#M272842</guid>
      <dc:creator>naziralala</dc:creator>
      <dc:date>2015-01-10T22:12:41Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Data Source Load into QlikView and create QVD?</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Data-Source-Load-into-QlikView-and-create-QVD/m-p/768226#M272843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;to adress more Files in one Load you can use the * wildcard.&lt;/P&gt;&lt;P&gt;You can use the Filelist, in the help you find a sample with a for each loop.&lt;/P&gt;&lt;P&gt;Some other functions you can use are the sql connect to excel files to read metadata.&lt;/P&gt;&lt;P&gt;With error mode you can use the wildcards also if there are fail pos loads witch generates errors.&lt;/P&gt;&lt;P&gt;You can use a load in the loop to generate a variable wich define the real load syntax for each file. With this you can react on some differences in the sources. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Jan 2015 00:23:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Data-Source-Load-into-QlikView-and-create-QVD/m-p/768226#M272843</guid>
      <dc:creator>jonasheisterkam</dc:creator>
      <dc:date>2015-01-11T00:23:41Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Data Source Load into QlikView and create QVD?</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Data-Source-Load-into-QlikView-and-create-QVD/m-p/768227#M272844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_14209375642946473" jivemacro_uid="_14209375642946473"&gt;
&lt;P&gt;tabSheet1:&lt;/P&gt;
&lt;P&gt;LOAD *&lt;/P&gt;
&lt;P&gt;FROM path\*&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;.xlsx&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;(ooxml, embedded labels, table is sheet1);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;tabSheet2:&lt;/P&gt;
&lt;P&gt;LOAD *&lt;/P&gt;
&lt;P&gt;FROM path\*&lt;SPAN style="font-size: 10pt;"&gt;.xlsx&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;(ooxml, embedded labels, table is sheet2);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;tabSheet3:&lt;/P&gt;
&lt;P&gt;LOAD *&lt;/P&gt;
&lt;P&gt;FROM path\*&lt;SPAN style="font-size: 10pt;"&gt;.xlsx&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;(ooxml, embedded labels, table is sheet3);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Store tabSheet1 into tabSheet1.qvd (qvd);&lt;/P&gt;
&lt;P&gt;Store tabSheet2 into tabSheet2.qvd (qvd);&lt;/P&gt;
&lt;P&gt;Store tabSheet3 into tabSheet3.qvd (qvd);&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Jan 2015 00:52:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Data-Source-Load-into-QlikView-and-create-QVD/m-p/768227#M272844</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2015-01-11T00:52:52Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Data Source Load into QlikView and create QVD?</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Data-Source-Load-into-QlikView-and-create-QVD/m-p/768228#M272845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. This helped.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 15:50:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Data-Source-Load-into-QlikView-and-create-QVD/m-p/768228#M272845</guid>
      <dc:creator>naziralala</dc:creator>
      <dc:date>2015-04-27T15:50:48Z</dc:date>
    </item>
  </channel>
</rss>

