<?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 Loading multiple tabs in the Excel in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Loading-multiple-tabs-in-the-Excel/m-p/259242#M97868</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In addition, if the sheets are more "creatively" named you can account for that either by listing them beforehand:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET sheets = sheetA, sheetB, sheetC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR each sheet IN $(sheets)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD A,&lt;/P&gt;&lt;P&gt;B&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;yourfile (biff, embedded labels, table is $(sheet)$);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NEXT SHEET&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or even load the list directly from excel file by connecting to it through oledb.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Feb 2012 10:58:59 GMT</pubDate>
    <dc:creator>kuba_michalik</dc:creator>
    <dc:date>2012-02-07T10:58:59Z</dc:date>
    <item>
      <title>Loading multiple tabs in the Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-multiple-tabs-in-the-Excel/m-p/259240#M97866</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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I have 12 sheets of data for 12 months&amp;nbsp; for a year.. Instead of loading data from different sheets and later concatinating them is there any way that i can load the data from all the sheets with in a single load statement...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp; in advance..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Feb 2012 10:30:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-multiple-tabs-in-the-Excel/m-p/259240#M97866</guid>
      <dc:creator />
      <dc:date>2012-02-07T10:30:08Z</dc:date>
    </item>
    <item>
      <title>Loading multiple tabs in the Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-multiple-tabs-in-the-Excel/m-p/259241#M97867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FOR each i IN 1,2,3,4,5,6,7,8,9,10,111,12&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD A, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; B&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;yourfile (ooxml, embedded labels, table is Sheet$(i));&lt;/P&gt;&lt;P&gt;Next;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your Excel doc is 2003 format then change to BIFF and add $ at end:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD A, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; B&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;yourfile (biff, embedded labels, table is Sheet$(i)$);&lt;/P&gt;&lt;P&gt;Next;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jason&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Feb 2012 10:43:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-multiple-tabs-in-the-Excel/m-p/259241#M97867</guid>
      <dc:creator>Jason_Michaelides</dc:creator>
      <dc:date>2012-02-07T10:43:27Z</dc:date>
    </item>
    <item>
      <title>Loading multiple tabs in the Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-multiple-tabs-in-the-Excel/m-p/259242#M97868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In addition, if the sheets are more "creatively" named you can account for that either by listing them beforehand:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET sheets = sheetA, sheetB, sheetC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR each sheet IN $(sheets)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD A,&lt;/P&gt;&lt;P&gt;B&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;yourfile (biff, embedded labels, table is $(sheet)$);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NEXT SHEET&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or even load the list directly from excel file by connecting to it through oledb.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Feb 2012 10:58:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-multiple-tabs-in-the-Excel/m-p/259242#M97868</guid>
      <dc:creator>kuba_michalik</dc:creator>
      <dc:date>2012-02-07T10:58:59Z</dc:date>
    </item>
    <item>
      <title>Loading multiple tabs in the Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-multiple-tabs-in-the-Excel/m-p/259243#M97869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;You may also create an ODBC connection to loop through all the sheets: &lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://community.qlik.com/message/165185#165185"&gt;http://community.qlik.com/message/165185#165185&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Feb 2012 11:02:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-multiple-tabs-in-the-Excel/m-p/259243#M97869</guid>
      <dc:creator>erichshiino</dc:creator>
      <dc:date>2012-02-07T11:02:52Z</dc:date>
    </item>
  </channel>
</rss>

