<?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: Load specific sheets from multiple excel files in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-specific-sheets-from-multiple-excel-files/m-p/1345914#M824535</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I already saw this post. The thing I didn't understand from the answer that was given there is how to load specific sheets without specifying?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Jul 2017 06:34:53 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-07-21T06:34:53Z</dc:date>
    <item>
      <title>Load specific sheets from multiple excel files</title>
      <link>https://community.qlik.com/t5/QlikView/Load-specific-sheets-from-multiple-excel-files/m-p/1345911#M824532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #575757;"&gt;Hi!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #575757;"&gt;Can someone help me with my load statement? &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #575757;"&gt;I am trying to load mulpiple numbered sheets from multiple files. In each file there can be numbered sheets from 1-12 (12 is max, can be less) and sheets with different kind of names (I don't want to load those). Fields in each of the numbered sheets are exactly the same.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #575757;"&gt;Currently I am working on this script:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt; LET&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;STRONG&gt;&lt;EM style=": ; color: #808080;"&gt;vStartSheetNumber&lt;/EM&gt;&lt;/STRONG&gt; = 1; &lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;LET&lt;/STRONG&gt; &lt;STRONG&gt;&lt;EM style=": ; color: #808080;"&gt;vEndSheetNumber&lt;/EM&gt;&lt;/STRONG&gt; = 12;&lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;LET&lt;/STRONG&gt; &lt;STRONG&gt;&lt;EM style=": ; color: #808080;"&gt;vPath&lt;/EM&gt;&lt;/STRONG&gt; = 'C:\Users\User1\Desktop';&lt;BR /&gt; &lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;FOR&lt;/STRONG&gt; &lt;SPAN style="color: #0000ff;"&gt;Each&lt;/SPAN&gt; &lt;STRONG&gt;&lt;EM style=": ; color: #808080;"&gt;vFile&lt;/EM&gt;&lt;/STRONG&gt; &lt;SPAN style="color: #0000ff;"&gt;in&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;FileList&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;vPath&lt;/SPAN&gt; &amp;amp; '\*.xlsx')&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;SPAN style="color: #0000ff;"&gt; ODBC&lt;/SPAN&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;CONNECT32&lt;/STRONG&gt; &lt;SPAN style="color: #0000ff;"&gt;TO&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;[Excel Files;DBQ=$(vFile)]&lt;/SPAN&gt;; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt; Temp:&lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;LOAD&lt;/STRONG&gt; *;&lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;SQLtables&lt;/STRONG&gt;; &lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;DISCONNECT&lt;/STRONG&gt;;&lt;BR /&gt; &lt;BR /&gt; Data:&lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;LOAD&lt;/STRONG&gt; * &lt;SPAN style="color: #0000ff;"&gt;INLINE&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;[&lt;BR /&gt; xxx ]&lt;/SPAN&gt;;&lt;BR /&gt;&lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;FOR&lt;/STRONG&gt; &lt;STRONG&gt;&lt;EM style=": ; color: #808080;"&gt;index&lt;/EM&gt;&lt;/STRONG&gt; = &lt;SPAN style="color: #800000;"&gt;vStartSheetNumber&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;TO&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;vEndSheetNumber&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN style="color: #0000ff;"&gt;Concatenate&lt;/SPAN&gt;(Data)&lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;LOAD&lt;/STRONG&gt;&lt;BR /&gt; *&lt;BR /&gt; &lt;SPAN style="color: #0000ff;"&gt;FROM&lt;/SPAN&gt; [$(vPath)\*.xlsx]&lt;BR /&gt; (&lt;SPAN style="color: #0000ff;"&gt;ooxml&lt;/SPAN&gt;, &lt;SPAN style="color: #0000ff;"&gt;embedded&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;labels&lt;/SPAN&gt;, &lt;SPAN style="color: #0000ff;"&gt;header&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;is&lt;/SPAN&gt; 1 &lt;SPAN style="color: #0000ff;"&gt;lines&lt;/SPAN&gt;, &lt;SPAN style="color: #0000ff;"&gt;table&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;is&lt;/SPAN&gt; [$(index)]);&lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;NEXT&lt;/STRONG&gt; &lt;STRONG&gt;&lt;EM style=": ; color: #808080;"&gt;index&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;NEXT&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;vFile &lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Basicaly I have to problems:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;1) I am getting this error message for each loaded sheet in the second FOR loop:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;&lt;SPAN style="color: #999999; font-size: 8pt;"&gt;Error: File extdata.cpp, Line 2903&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;&lt;SPAN style="color: #999999; font-size: 8pt;"&gt;Concatenate(Data)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;&lt;SPAN style="color: #999999; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;&lt;SPAN style="color: #999999; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;&lt;SPAN style="color: #999999; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM &lt;C&gt;&lt;/C&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;&lt;SPAN style="color: #999999; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (ooxml, embedded labels, header is 1 lines, table is [1])&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt; How can I get rid of it?&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;2) When pressing through the errors I can see that each file is loaded multiple times if there are more then 1 file in the folder (if there are 2 files that each file is loaded 2 time, 3 times for 3 files, etc.). Where might be the problem?&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-specific-sheets-from-multiple-excel-files/m-p/1345911#M824532</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Load specific sheets from multiple excel files</title>
      <link>https://community.qlik.com/t5/QlikView/Load-specific-sheets-from-multiple-excel-files/m-p/1345912#M824533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;see here:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/message/586144"&gt;Error: File extdata.cpp, Line 2903&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jul 2017 14:31:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-specific-sheets-from-multiple-excel-files/m-p/1345912#M824533</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2017-07-20T14:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: Load specific sheets from multiple excel files</title>
      <link>https://community.qlik.com/t5/QlikView/Load-specific-sheets-from-multiple-excel-files/m-p/1345913#M824534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem is that you are using *.xlsx twice in your script. &lt;/P&gt;&lt;P&gt;Once in the for each filelist&amp;nbsp; command, and again in the Concatenate(data) load.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;This is the causing the xls files to load multiple times&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try using this in your script. The trace command will show the file you are loading in the progress window/document log&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10.6667px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #0000ff;"&gt;trace ...Loading data from &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.6667px;"&gt; [$(vFile)];&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10.6667px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #0000ff;"&gt;FOR&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.6667px;"&gt; &lt;/SPAN&gt;&lt;STRONG style="font-size: 10.6667px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-weight: inherit; font-size: 10.6667px; font-family: inherit; color: #808080;"&gt;index&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.6667px;"&gt; = &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.6667px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #800000;"&gt;vStartSheetNumber&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.6667px;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.6667px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #0000ff;"&gt;TO&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.6667px;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.6667px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #800000;"&gt;vEndSheetNumber&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.6667px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #0000ff;"&gt;Concatenate&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.6667px;"&gt;(Data)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10.6667px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #0000ff;"&gt;LOAD&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.6667px;"&gt;*&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.6667px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #0000ff;"&gt;FROM&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.6667px;"&gt; [$(vFile)]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.6667px;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.6667px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #0000ff;"&gt;ooxml&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.6667px;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.6667px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #0000ff;"&gt;embedded&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.6667px;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.6667px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #0000ff;"&gt;labels&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.6667px;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.6667px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #0000ff;"&gt;header&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.6667px;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.6667px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #0000ff;"&gt;is&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.6667px;"&gt; 1 &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.6667px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #0000ff;"&gt;lines&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.6667px;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.6667px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #0000ff;"&gt;table&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.6667px;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.6667px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #0000ff;"&gt;is&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.6667px;"&gt; [$(index)]);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10.6667px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #0000ff;"&gt;NEXT&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.6667px;"&gt; &lt;/SPAN&gt;&lt;STRONG style="font-size: 10.6667px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-weight: inherit; font-size: 10.6667px; font-family: inherit; color: #808080;"&gt;index&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jul 2017 15:25:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-specific-sheets-from-multiple-excel-files/m-p/1345913#M824534</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2017-07-20T15:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: Load specific sheets from multiple excel files</title>
      <link>https://community.qlik.com/t5/QlikView/Load-specific-sheets-from-multiple-excel-files/m-p/1345914#M824535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I already saw this post. The thing I didn't understand from the answer that was given there is how to load specific sheets without specifying?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jul 2017 06:34:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-specific-sheets-from-multiple-excel-files/m-p/1345914#M824535</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-07-21T06:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: Load specific sheets from multiple excel files</title>
      <link>https://community.qlik.com/t5/QlikView/Load-specific-sheets-from-multiple-excel-files/m-p/1345915#M824536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your coment. It was quite helpful. I made a few changes and it seems to be working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Based on your coment I made to seperate FOR loops instead of&amp;nbsp; nested FOR loops. That fixed the multiple loading of files. And for error problem I just set ErrorMode to 0 before the second FOR loop and turned it back on after it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jul 2017 07:07:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-specific-sheets-from-multiple-excel-files/m-p/1345915#M824536</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-07-21T07:07:43Z</dc:date>
    </item>
    <item>
      <title>Re: Load specific sheets from multiple excel files</title>
      <link>https://community.qlik.com/t5/QlikView/Load-specific-sheets-from-multiple-excel-files/m-p/1345916#M824537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;look into this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-14663"&gt;Dynamically Loading Multiple Excel Files&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jul 2017 08:00:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-specific-sheets-from-multiple-excel-files/m-p/1345916#M824537</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2017-07-21T08:00:17Z</dc:date>
    </item>
    <item>
      <title>Re: Load specific sheets from multiple excel files</title>
      <link>https://community.qlik.com/t5/QlikView/Load-specific-sheets-from-multiple-excel-files/m-p/1345917#M824538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I used your link and &lt;A href="https://community.qlik.com/docs/DOC-4452"&gt;Load Multiple excel sheets using For loop&lt;/A&gt; as examples.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jul 2017 08:48:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-specific-sheets-from-multiple-excel-files/m-p/1345917#M824538</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-07-21T08:48:51Z</dc:date>
    </item>
  </channel>
</rss>

