<?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: how to upload multiple excel sheets with different sheet names in one go in Qlik Learning Discussions</title>
    <link>https://community.qlik.com/t5/Qlik-Learning-Discussions/how-to-upload-multiple-excel-sheets-with-different-sheet-names/m-p/770105#M1783</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If this is what you wanted Sunny, could you please close this discussion by selecting the correct/helpful answer?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Agis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Nov 2014 16:02:45 GMT</pubDate>
    <dc:creator>Agis-Kalogiannis</dc:creator>
    <dc:date>2014-11-05T16:02:45Z</dc:date>
    <item>
      <title>how to upload multiple excel sheets with different sheet names in one go</title>
      <link>https://community.qlik.com/t5/Qlik-Learning-Discussions/how-to-upload-multiple-excel-sheets-with-different-sheet-names/m-p/770102#M1780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear friends&lt;/P&gt;&lt;P&gt;I have a excel sheet that i receive from my client on a daily basis that i have to load on to qlikview&lt;/P&gt;&lt;P&gt;But the problem is that each day that sheet has a different name&lt;/P&gt;&lt;P&gt;please tell me that what changes should i make to the loading logic so that i need not change the sheet name daily&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2014 11:23:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Learning-Discussions/how-to-upload-multiple-excel-sheets-with-different-sheet-names/m-p/770102#M1780</guid>
      <dc:creator />
      <dc:date>2014-11-05T11:23:43Z</dc:date>
    </item>
    <item>
      <title>Re: how to upload multiple excel sheets with different sheet names in one go</title>
      <link>https://community.qlik.com/t5/Qlik-Learning-Discussions/how-to-upload-multiple-excel-sheets-with-different-sheet-names/m-p/770103#M1781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think the following discussion will help you on that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/message/223934"&gt;Re: Loading from multiple Excel files and multiple sheets&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tha basic idea is to create an ODBC connection to get all the sheet names and then loop through them to get the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Agis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2014 11:30:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Learning-Discussions/how-to-upload-multiple-excel-sheets-with-different-sheet-names/m-p/770103#M1781</guid>
      <dc:creator>Agis-Kalogiannis</dc:creator>
      <dc:date>2014-11-05T11:30:22Z</dc:date>
    </item>
    <item>
      <title>Re: how to upload multiple excel sheets with different sheet names in one go</title>
      <link>https://community.qlik.com/t5/Qlik-Learning-Discussions/how-to-upload-multiple-excel-sheets-with-different-sheet-names/m-p/770104#M1782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can use a script similar to this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DIRECTORY C:\Users\KonoGes\Documents;&lt;/P&gt;&lt;P&gt;Set Root='C:\Users\KonoGes\Documents';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for each Ext in 'qvw', 'qva', 'qvo', 'qvs'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for each Dir in dirlist ('$(Root)'&amp;amp;'\*')&lt;/P&gt;&lt;P&gt;&amp;nbsp; for each File in filelist (Dir&amp;amp;'\*.' &amp;amp;Ext)&lt;/P&gt;&lt;P&gt;&amp;nbsp; Load &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '$(File)' as Name, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FileSize( '$(File)' ) as Size,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FileTime( '$(File)' ) as FileTime,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Subfield('$(File)', '\', 1+SubStringCount('$(File)', '\')) as Fichero,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; left('$(File)', index('$(File)', '\', -1)) as Directorio&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; next File&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; next Dir&lt;/P&gt;&lt;P&gt;next Ext&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2014 11:31:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Learning-Discussions/how-to-upload-multiple-excel-sheets-with-different-sheet-names/m-p/770104#M1782</guid>
      <dc:creator>ecolomer</dc:creator>
      <dc:date>2014-11-05T11:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: how to upload multiple excel sheets with different sheet names in one go</title>
      <link>https://community.qlik.com/t5/Qlik-Learning-Discussions/how-to-upload-multiple-excel-sheets-with-different-sheet-names/m-p/770105#M1783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If this is what you wanted Sunny, could you please close this discussion by selecting the correct/helpful answer?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Agis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2014 16:02:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Learning-Discussions/how-to-upload-multiple-excel-sheets-with-different-sheet-names/m-p/770105#M1783</guid>
      <dc:creator>Agis-Kalogiannis</dc:creator>
      <dc:date>2014-11-05T16:02:45Z</dc:date>
    </item>
  </channel>
</rss>

