<?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 several tables incrementally, with the same name as the Excel files that are in a folder in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1825823#M1213957</link>
    <description>&lt;P&gt;see attached files&lt;/P&gt;</description>
    <pubDate>Fri, 30 Jul 2021 18:26:51 GMT</pubDate>
    <dc:creator>Frank_Hartmann</dc:creator>
    <dc:date>2021-07-30T18:26:51Z</dc:date>
    <item>
      <title>Load several tables incrementally, with the same name as the Excel files that are in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1825724#M1213942</link>
      <description>&lt;PRE&gt;&lt;SPAN class="Y2IQFc"&gt;Hello, I do not have much experience, I find myself lost with this matter, &lt;BR /&gt;I am trying to do a task, which I have previously looked for solutions, but they do not &lt;BR /&gt;solve my needs, I will explain myself:

I receive several Excel files with a name (Filename_1, Filename_2, etc ...) &lt;BR /&gt;each one determined, which are deposited in a folder.

I want to create a table for each file (Table Filename_1, Table Filename_2) &lt;BR /&gt;whose names are the same as the excel file &lt;BR /&gt;where the data is loaded &lt;BR /&gt;(I have seen solutions but they do not create a table for each file with its name). &lt;BR /&gt;These tables are related by a field.

Once I have created the structure, I want to perform incremental loads periodically.&lt;BR /&gt;&lt;BR /&gt;Thank you so much in advance.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jul 2021 09:33:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1825724#M1213942</guid>
      <dc:creator>Fernan</dc:creator>
      <dc:date>2021-07-30T09:33:38Z</dc:date>
    </item>
    <item>
      <title>Re: Load several tables incrementally, with the same name as the Excel files that are in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1825797#M1213951</link>
      <description>&lt;P&gt;Maybe something like this?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;FOR each File in FileList('*.xlsx')

Let count = SubStringCount(File,'\');
Let tablename = 'Table '&amp;amp; left(Subfield(File,'\',$(count)+1),len(Subfield(File,'\',$(count)+1))-5);  

'$(tablename)':
LOAD
*
FROM [$(File)] (ooxml, embedded labels, table is Tabelle1);

NEXT File&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;see attched files!&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jul 2021 15:13:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1825797#M1213951</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2021-07-30T15:13:25Z</dc:date>
    </item>
    <item>
      <title>Re: Load several tables incrementally, with the same name as the Excel files that are in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1825819#M1213953</link>
      <description>&lt;PRE&gt;&lt;SPAN class="Y2IQFc"&gt;Hello, thank you very much for your help.I have tried this code with several xlsx and csv files but it does not work, &lt;BR /&gt;I attach example files and a screenshot of the error.The idea would be to create a table for each file with the same name as the file.&lt;BR /&gt;Thank you very much in advance.&lt;/SPAN&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 30 Jul 2021 17:41:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1825819#M1213953</guid>
      <dc:creator>Fernan</dc:creator>
      <dc:date>2021-07-30T17:41:03Z</dc:date>
    </item>
    <item>
      <title>Re: Load several tables incrementally, with the same name as the Excel files that are in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1825823#M1213957</link>
      <description>&lt;P&gt;see attached files&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jul 2021 18:26:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1825823#M1213957</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2021-07-30T18:26:51Z</dc:date>
    </item>
    <item>
      <title>Re: Load several tables incrementally, with the same name as the Excel files that are in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1825825#M1213958</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class="Y2IQFc"&gt;hello, first thank you very much for the help.I have seen the code, but the names of the source files can vary, and among other &lt;BR /&gt;things they usually have a date in the name, which would require that these file names be read and the table of that file be created. &lt;BR /&gt;I hope I have explained myself.Thank you very much in advance&lt;/SPAN&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 30 Jul 2021 18:59:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1825825#M1213958</guid>
      <dc:creator>Fernan</dc:creator>
      <dc:date>2021-07-30T18:59:17Z</dc:date>
    </item>
    <item>
      <title>Re: Load several tables incrementally, with the same name as the Excel files that are in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1825826#M1213959</link>
      <description>&lt;P&gt;excelfilename and excelsheetname are always identically?&lt;/P&gt;&lt;P&gt;Or do they also differ?&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jul 2021 19:28:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1825826#M1213959</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2021-07-30T19:28:33Z</dc:date>
    </item>
    <item>
      <title>Re: Load several tables incrementally, with the same name as the Excel files that are in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1825830#M1213960</link>
      <description>&lt;P&gt;Hi Frank,&amp;nbsp;&amp;nbsp;&lt;SPAN class="Y2IQFc"&gt;the files are different in name and content. Then I will need to do incremental loads of some.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jul 2021 19:55:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1825830#M1213960</guid>
      <dc:creator>Fernan</dc:creator>
      <dc:date>2021-07-30T19:55:35Z</dc:date>
    </item>
    <item>
      <title>Re: Load several tables incrementally, with the same name as the Excel files that are in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1825834#M1213961</link>
      <description>&lt;P&gt;OK, but i asked about the relation between Filename and Tabname:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Frank_Hartmann_0-1627675816044.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/59494iBBAD42B1595C0F10/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Frank_Hartmann_0-1627675816044.png" alt="Frank_Hartmann_0-1627675816044.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is the name of the Tab in Excel always equal to the name of the ExcelFile?&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jul 2021 20:12:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1825834#M1213961</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2021-07-30T20:12:08Z</dc:date>
    </item>
    <item>
      <title>Re: Load several tables incrementally, with the same name as the Excel files that are in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1825836#M1213962</link>
      <description>&lt;P&gt;Oh, sorry,&amp;nbsp;&amp;nbsp;&lt;SPAN class="Y2IQFc"&gt;It may coincide, but what determines the name of the table is the name of the file, not the sheet.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Y2IQFc"&gt;Thank you so much.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jul 2021 20:19:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1825836#M1213962</guid>
      <dc:creator>Fernan</dc:creator>
      <dc:date>2021-07-30T20:19:07Z</dc:date>
    </item>
    <item>
      <title>Re: Load several tables incrementally, with the same name as the Excel files that are in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1825837#M1213963</link>
      <description>&lt;P&gt;So i conclude that the Excelname and the SheetName may differ. That makes it a little bit complicated because in order to load the different ExcelFiles in one Loop, you would need to know the Sheet/Tab Names from your different Excel Files.&amp;nbsp; This could be done by macro. You would need to call the macro in script and the code would look inside the excelfiles and copies the tabname which then could be used for loading these specific Exceltab in the Loop. So everytime the loop comes to the next Table the macro would be triggered again....&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jul 2021 20:30:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1825837#M1213963</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2021-07-30T20:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: Load several tables incrementally, with the same name as the Excel files that are in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1825838#M1213964</link>
      <description>&lt;PRE&gt;&lt;SPAN class="Y2IQFc"&gt;Hi Frank, yes, that's the question, that's why I'm exposing it, because I don't have the knowledge to do it.
Thanks a lot&lt;/SPAN&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 30 Jul 2021 20:46:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1825838#M1213964</guid>
      <dc:creator>Fernan</dc:creator>
      <dc:date>2021-07-30T20:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: Load several tables incrementally, with the same name as the Excel files that are in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1825841#M1213965</link>
      <description>&lt;P&gt;maybe I&amp;nbsp; found another way. have a look at the attached files&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jul 2021 21:13:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1825841#M1213965</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2021-07-30T21:13:48Z</dc:date>
    </item>
    <item>
      <title>Re: Load several tables incrementally, with the same name as the Excel files that are in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1826029#M1213977</link>
      <description>&lt;P&gt;Hello Frank, first, thank you very much for your interest.&lt;BR /&gt;I have been testing, with some files, but it does not work, for each excel,&lt;BR /&gt;it does not create a table in Qlikview,&lt;BR /&gt;there are files that are not loaded and I do not understand why.&lt;BR /&gt;I am attaching&amp;nbsp; a dataset that I have tested.&lt;BR /&gt;Thank you very much in advance.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Aug 2021 09:37:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1826029#M1213977</guid>
      <dc:creator>Fernan</dc:creator>
      <dc:date>2021-08-02T09:37:26Z</dc:date>
    </item>
    <item>
      <title>Re: Load several tables incrementally, with the same name as the Excel files that are in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1826033#M1213980</link>
      <description>&lt;P&gt;one more try&lt;/P&gt;</description>
      <pubDate>Mon, 02 Aug 2021 10:13:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1826033#M1213980</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2021-08-02T10:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: Load several tables incrementally, with the same name as the Excel files that are in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1826038#M1213982</link>
      <description>&lt;PRE&gt;&lt;SPAN class="Y2IQFc"&gt;Hi Frank, I have been testing and it seems that now it works :).I wanted to ask you, if the table already exists, &lt;BR /&gt;how could we concatenate the data to the existing table? Millions Thank you in advance ¡&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Aug 2021 10:39:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1826038#M1213982</guid>
      <dc:creator>Fernan</dc:creator>
      <dc:date>2021-08-02T10:39:18Z</dc:date>
    </item>
    <item>
      <title>Re: Load several tables incrementally, with the same name as the Excel files that are in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1826043#M1213983</link>
      <description>&lt;P&gt;Maybe by adding an if then else condition in load script? see attached files.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Aug 2021 10:53:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1826043#M1213983</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2021-08-02T10:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: Load several tables incrementally, with the same name as the Excel files that are in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1826047#M1213984</link>
      <description>&lt;PRE&gt;&lt;SPAN class="Y2IQFc"&gt;Hi Frank, great :).&lt;BR /&gt;Thank you so much for your help and speed. &lt;BR /&gt;Best regards ¡&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 02 Aug 2021 10:58:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-several-tables-incrementally-with-the-same-name-as-the/m-p/1826047#M1213984</guid>
      <dc:creator>Fernan</dc:creator>
      <dc:date>2021-08-02T10:58:44Z</dc:date>
    </item>
  </channel>
</rss>

