<?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: recursive file loading in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/recursive-file-loading/m-p/345243#M127644</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your only issue is : "how to browse sub-folders recursively?"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this one could help &lt;A _jive_internal="true" href="https://community.qlik.com/message/192877#192877"&gt;http://community.qlik.com/message/192877#192877&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Jul 2012 08:53:39 GMT</pubDate>
    <dc:creator>nstefaniuk</dc:creator>
    <dc:date>2012-07-11T08:53:39Z</dc:date>
    <item>
      <title>recursive file loading</title>
      <link>https://community.qlik.com/t5/QlikView/recursive-file-loading/m-p/345242#M127643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;starting in one given directory that has n sub directories i want to load one specific column (that exists in each tab; lets call it "TARGET") of all tabs of all xls files in each directory. I want to ignore all other file formats. The xml files have different names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The values of that one column i want to store in a table RESULT that has two columns: TARGET (with the field's value) and SOURCE (containing the relative path together with the filename to the source xls file)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope the challange is clear &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for some input.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 08:20:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/recursive-file-loading/m-p/345242#M127643</guid>
      <dc:creator />
      <dc:date>2012-07-11T08:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: recursive file loading</title>
      <link>https://community.qlik.com/t5/QlikView/recursive-file-loading/m-p/345243#M127644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your only issue is : "how to browse sub-folders recursively?"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this one could help &lt;A _jive_internal="true" href="https://community.qlik.com/message/192877#192877"&gt;http://community.qlik.com/message/192877#192877&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 08:53:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/recursive-file-loading/m-p/345243#M127644</guid>
      <dc:creator>nstefaniuk</dc:creator>
      <dc:date>2012-07-11T08:53:39Z</dc:date>
    </item>
    <item>
      <title>Re: recursive file loading</title>
      <link>https://community.qlik.com/t5/QlikView/recursive-file-loading/m-p/345244#M127645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sub BrowseDirectory (Root)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;for each vExtension in 'xls', 'xlsx',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for each vFileName in filelist (Root&amp;amp;' \*.' &amp;amp;vExtension)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Load &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '$(vFileName)' as Name, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FileSize( '$(vFileName)' ) as Size,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FileTime( '$(vFileName)' ) as FileTime&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; autogenerate 1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '$(vFileName)' as Name, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM [$(vFileName)] (biff, embedded labels, table is TARGET);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; next vFileName&lt;/P&gt;&lt;P&gt;&amp;nbsp; next vExtension&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;for each vDirectory in dirlist (Root&amp;amp;' \*' )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; call BrowseDirectory (vDirectory)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;next vDirectory&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;P&gt;call BrowseDirectory ('C:')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 09:14:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/recursive-file-loading/m-p/345244#M127645</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2012-07-11T09:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: recursive file loading</title>
      <link>https://community.qlik.com/t5/QlikView/recursive-file-loading/m-p/345245#M127646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This aand - additionally - the tabs in the various Excel files have different names. So i assume i also need a way to go through all tabs in an Excel file. Some have only one tab, others might have 3 or 4 tabs...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 09:14:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/recursive-file-loading/m-p/345245#M127646</guid>
      <dc:creator />
      <dc:date>2012-07-11T09:14:54Z</dc:date>
    </item>
    <item>
      <title>Re: recursive file loading</title>
      <link>https://community.qlik.com/t5/QlikView/recursive-file-loading/m-p/345246#M127647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you know the tab names ? I think it's not possible to access a tab without knowing it's name, when it's possible to access a column without knowing it's name.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 09:17:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/recursive-file-loading/m-p/345246#M127647</guid>
      <dc:creator>nstefaniuk</dc:creator>
      <dc:date>2012-07-11T09:17:49Z</dc:date>
    </item>
    <item>
      <title>Re: recursive file loading</title>
      <link>https://community.qlik.com/t5/QlikView/recursive-file-loading/m-p/345247#M127648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you need to use an approach as described here:&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" class="loading active_link" href="https://community.qlik.com/message/223618#223618" title="http://community.qlik.com/message/223618#223618"&gt;http://community.qlik.com/message/223618#223618&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e. do a ODBC or OLEDB Connect and browse your tables.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 09:22:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/recursive-file-loading/m-p/345247#M127648</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-07-11T09:22:01Z</dc:date>
    </item>
    <item>
      <title>Re: recursive file loading</title>
      <link>https://community.qlik.com/t5/QlikView/recursive-file-loading/m-p/345248#M127649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@henric: Thanks for the script part, but this gives me an error on &lt;EM style="color: #636363; font-size: 12px; background-color: #ffffff; font-family: Arial;"&gt;for each vExtension in 'xls', 'xlsx', - &lt;/EM&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;any idea, why ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;@nstefaniuk: Tabs can unfortunately have almost any name. No convention there. I was hoping there is a way to loop though an excel file. The column i am looking at however has the same name in all files and tabs.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 09:23:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/recursive-file-loading/m-p/345248#M127649</guid>
      <dc:creator />
      <dc:date>2012-07-11T09:23:22Z</dc:date>
    </item>
    <item>
      <title>Re: recursive file loading</title>
      <link>https://community.qlik.com/t5/QlikView/recursive-file-loading/m-p/345249#M127650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, there is a comma too much on that row. It should be:&lt;/P&gt;&lt;P&gt;&lt;EM style="background-color: #ffffff; font-size: 12px; color: #636363; font-family: Arial;"&gt;for each vExtension in 'xls', 'xlsx'&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 09:27:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/recursive-file-loading/m-p/345249#M127650</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2012-07-11T09:27:49Z</dc:date>
    </item>
    <item>
      <title>Re: recursive file loading</title>
      <link>https://community.qlik.com/t5/QlikView/recursive-file-loading/m-p/345250#M127651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. The problem really seems to be the sheet names in the various Excel files. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 09:43:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/recursive-file-loading/m-p/345250#M127651</guid>
      <dc:creator />
      <dc:date>2012-07-11T09:43:36Z</dc:date>
    </item>
    <item>
      <title>Re: recursive file loading</title>
      <link>https://community.qlik.com/t5/QlikView/recursive-file-loading/m-p/345251#M127652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This one could help &lt;A _jive_internal="true" href="https://community.qlik.com/message/112289#112289"&gt;http://community.qlik.com/message/112289#112289&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you XLS or XLSX files ? For XLS the @&amp;lt;id&amp;gt; method works well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you don't specify the sheet, it will read only the first one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can try with the ODBC method&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 11:49:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/recursive-file-loading/m-p/345251#M127652</guid>
      <dc:creator>nstefaniuk</dc:creator>
      <dc:date>2012-07-11T11:49:25Z</dc:date>
    </item>
    <item>
      <title>Re: recursive file loading</title>
      <link>https://community.qlik.com/t5/QlikView/recursive-file-loading/m-p/345252#M127653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;These ones too :&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" class="loading active_link" href="https://community.qlik.com/message/223935#223935"&gt;http://community.qlik.com/message/223935#223935&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://qlikviewnotes.blogspot.fr/2008/09/loading-multiple-excel-sheets.html"&gt;http://qlikviewnotes.blogspot.fr/2008/09/loading-multiple-excel-sheets.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 11:52:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/recursive-file-loading/m-p/345252#M127653</guid>
      <dc:creator>nstefaniuk</dc:creator>
      <dc:date>2012-07-11T11:52:34Z</dc:date>
    </item>
  </channel>
</rss>

