<?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: Import Multiple excel sheets at once in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Import-Multiple-excel-sheets-at-once/m-p/665644#M242290</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Jonathan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with little changes&lt;/P&gt;&lt;P&gt;replace sheet is with Table is and Sheet$i with Sheet$(i)&lt;/P&gt;&lt;P&gt;after making changes the script runs fine and load all the sheet at once.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Sep 2014 09:49:45 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-09-10T09:49:45Z</dc:date>
    <item>
      <title>Import Multiple excel sheets at once</title>
      <link>https://community.qlik.com/t5/QlikView/Import-Multiple-excel-sheets-at-once/m-p/665641#M242287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;Is this possible to import multiple sheets from an excel file at once? If yes then please share the steps or logic for that.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Bhawna&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2014 08:51:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Import-Multiple-excel-sheets-at-once/m-p/665641#M242287</guid>
      <dc:creator />
      <dc:date>2014-09-10T08:51:24Z</dc:date>
    </item>
    <item>
      <title>Re: Import Multiple excel sheets at once</title>
      <link>https://community.qlik.com/t5/QlikView/Import-Multiple-excel-sheets-at-once/m-p/665642#M242288</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you mean using a wildcard like *, then no. You need to loop over the sheets. You can use a For loop, like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; For i = 1 To 10&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD * From Mysheet.xlsx (ooxml, sheet is Sheet$i));&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Next&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the names never change:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; For Each vSheet In 'Detail', ''Summary', 'Last Year'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD * From Mysheet.xlsx (ooxml, sheet is $(vSheet));&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Next&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or if the names are more complicated, you can use an ODBC connection to get the list of sheet names and loop over this list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2014 09:37:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Import-Multiple-excel-sheets-at-once/m-p/665642#M242288</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2014-09-10T09:37:29Z</dc:date>
    </item>
    <item>
      <title>Re: Import Multiple excel sheets at once</title>
      <link>https://community.qlik.com/t5/QlikView/Import-Multiple-excel-sheets-at-once/m-p/665643#M242289</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/message/75817"&gt;Loading Dynamically Multiple Excel Sheets&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/message/223618"&gt;Loading from multiple Excel files and multiple sheets&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2014 09:49:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Import-Multiple-excel-sheets-at-once/m-p/665643#M242289</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2014-09-10T09:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: Import Multiple excel sheets at once</title>
      <link>https://community.qlik.com/t5/QlikView/Import-Multiple-excel-sheets-at-once/m-p/665644#M242290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Jonathan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with little changes&lt;/P&gt;&lt;P&gt;replace sheet is with Table is and Sheet$i with Sheet$(i)&lt;/P&gt;&lt;P&gt;after making changes the script runs fine and load all the sheet at once.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2014 09:49:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Import-Multiple-excel-sheets-at-once/m-p/665644#M242290</guid>
      <dc:creator />
      <dc:date>2014-09-10T09:49:45Z</dc:date>
    </item>
  </channel>
</rss>

