<?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 can I read a XLS with different in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/how-can-I-read-a-XLS-with-different/m-p/366685#M136386</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are each of the tabs identical, or is each one different?&amp;nbsp; Is there a logical naming of the tabs - or is it ad-hoc?&amp;nbsp; Are each of the tabs relatively simple (eg. titles on Row 1 and data below) or are there complexities?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These things will determine to quite an extent what the best solution will be.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One approach is to create an ODBC connection to the spreadsheet, and there is then a syntax will allows you to enumerate from 1 to the count of 'tables' in the ODBC connection.&amp;nbsp; Another is to create a list of tabs and load that into a temporary table and then enumerate around this table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This code does the later:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;Temp_BudgetSheets:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;LOAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;[Budget Sheet]&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;FROM $(vDataFolder)2012Budgets.xlsx&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;(ooxml, embedded labels, table is [Budget Sheets])&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;for vSheetNo = 0 to NoOfRows('Temp_BudgetSheets') -1&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;let vBudgetSheet = peek('Budget Sheet', vSheetNo, 'Temp_BudgetSheets');&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="white-space: pre-wrap; font-family: 'courier new', monospace;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;Temp_BudgetValues:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;LOAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace; white-space: pre-wrap;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;A as GLCode,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; B as M1, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; C as M2, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; D as M3, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; E as M4, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; F as M5,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; G as M6, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; H as M7, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I as M8, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; J as M9, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; K as M10, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; L as M11, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; M as M12&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;FROM [$(vDataFolder)2012Budgets.xlsx]&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;(ooxml, no labels, header is 6 lines, table is [$(vBudgetSheet)]);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;next&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;In the instance above a CROSS TABLE load was then required on the temporary table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;If each of the sheets do not have exactly the same columns you will need to be quite careful about how each of the tables join or concatenate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 May 2012 22:29:54 GMT</pubDate>
    <dc:creator>stevedark</dc:creator>
    <dc:date>2012-05-23T22:29:54Z</dc:date>
    <item>
      <title>how can I read a XLS with different</title>
      <link>https://community.qlik.com/t5/QlikView/how-can-I-read-a-XLS-with-different/m-p/366684#M136385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; I got a XLS book with different leaves and I need to read, somebody can tell me how can I do that.&lt;/P&gt;&lt;P&gt;Best regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2012 21:49:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-can-I-read-a-XLS-with-different/m-p/366684#M136385</guid>
      <dc:creator />
      <dc:date>2012-05-23T21:49:09Z</dc:date>
    </item>
    <item>
      <title>Re: how can I read a XLS with different</title>
      <link>https://community.qlik.com/t5/QlikView/how-can-I-read-a-XLS-with-different/m-p/366685#M136386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are each of the tabs identical, or is each one different?&amp;nbsp; Is there a logical naming of the tabs - or is it ad-hoc?&amp;nbsp; Are each of the tabs relatively simple (eg. titles on Row 1 and data below) or are there complexities?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These things will determine to quite an extent what the best solution will be.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One approach is to create an ODBC connection to the spreadsheet, and there is then a syntax will allows you to enumerate from 1 to the count of 'tables' in the ODBC connection.&amp;nbsp; Another is to create a list of tabs and load that into a temporary table and then enumerate around this table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This code does the later:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;Temp_BudgetSheets:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;LOAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;[Budget Sheet]&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;FROM $(vDataFolder)2012Budgets.xlsx&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;(ooxml, embedded labels, table is [Budget Sheets])&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;for vSheetNo = 0 to NoOfRows('Temp_BudgetSheets') -1&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;let vBudgetSheet = peek('Budget Sheet', vSheetNo, 'Temp_BudgetSheets');&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="white-space: pre-wrap; font-family: 'courier new', monospace;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;Temp_BudgetValues:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;LOAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace; white-space: pre-wrap;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;A as GLCode,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; B as M1, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; C as M2, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; D as M3, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; E as M4, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; F as M5,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; G as M6, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; H as M7, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I as M8, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; J as M9, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; K as M10, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; L as M11, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; M as M12&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;FROM [$(vDataFolder)2012Budgets.xlsx]&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;&lt;SPAN style="white-space: pre-wrap;"&gt; &lt;/SPAN&gt;(ooxml, no labels, header is 6 lines, table is [$(vBudgetSheet)]);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;&lt;SPAN style="font-family: 'courier new', monospace;"&gt;next&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;In the instance above a CROSS TABLE load was then required on the temporary table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;If each of the sheets do not have exactly the same columns you will need to be quite careful about how each of the tables join or concatenate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; text-align: -webkit-auto; background-color: rgba(255, 255, 255, 0.917969);"&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2012 22:29:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-can-I-read-a-XLS-with-different/m-p/366685#M136386</guid>
      <dc:creator>stevedark</dc:creator>
      <dc:date>2012-05-23T22:29:54Z</dc:date>
    </item>
  </channel>
</rss>

