<?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 Ignore Excel Sheet Name in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Ignore-Excel-Sheet-Name/m-p/224381#M76799</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to remove the part which says 'table is sheetName$'&lt;/P&gt;&lt;P&gt;If I remember correctly it works, ALL of them must have the same layout.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Apr 2011 15:35:11 GMT</pubDate>
    <dc:creator>erichshiino</dc:creator>
    <dc:date>2011-04-20T15:35:11Z</dc:date>
    <item>
      <title>Ignore Excel Sheet Name</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-Excel-Sheet-Name/m-p/224380#M76798</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;Can anyone please let me know if there is any way to totally ignore the sheet name when loading excel spreadsheets?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created a for each loop to run through a folder and read all the .xlsx files, but each file will have a sheet with a different name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advise.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2011 15:11:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-Excel-Sheet-Name/m-p/224380#M76798</guid>
      <dc:creator />
      <dc:date>2011-04-20T15:11:35Z</dc:date>
    </item>
    <item>
      <title>Ignore Excel Sheet Name</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-Excel-Sheet-Name/m-p/224381#M76799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to remove the part which says 'table is sheetName$'&lt;/P&gt;&lt;P&gt;If I remember correctly it works, ALL of them must have the same layout.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2011 15:35:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-Excel-Sheet-Name/m-p/224381#M76799</guid>
      <dc:creator>erichshiino</dc:creator>
      <dc:date>2011-04-20T15:35:11Z</dc:date>
    </item>
    <item>
      <title>Ignore Excel Sheet Name</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-Excel-Sheet-Name/m-p/224382#M76800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;just remove the reference to table name in your biff statement so it reads like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE ___default_attr="plain" class="jive_text_macro jive_macro_code" jivemacro="code"&gt;LOAD field1,&lt;BR /&gt; field2&lt;BR /&gt; etc. etc.&lt;BR /&gt;FROM *.xls (biff, embedded labels)[\code]&lt;BR /&gt;this will read the first tab irrespective of name from any xl file it opens. &amp;lt;/body&amp;gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2011 15:35:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-Excel-Sheet-Name/m-p/224382#M76800</guid>
      <dc:creator>pat_agen</dc:creator>
      <dc:date>2011-04-20T15:35:32Z</dc:date>
    </item>
    <item>
      <title>Ignore Excel Sheet Name</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-Excel-Sheet-Name/m-p/224383#M76801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had similar issue, and ended up using ODBC for Excel files. This was the only way to loop through all the "Sheets" in the excel file. So basically I had to loop through all the Excel files in the directly and for each Excel file I had to loop through all the sheets, and generate a QVD like ExcelFileName-SheetName.Qvd.&lt;/P&gt;&lt;P&gt;If you need similar, you may need to install Excel ODBC drivers, if you are using 64 bit machine, and variable-ize ODBC connection within your loop to connect to Excel files.&lt;/P&gt;&lt;P&gt;Rakesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2011 16:05:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-Excel-Sheet-Name/m-p/224383#M76801</guid>
      <dc:creator>disqr_rm</dc:creator>
      <dc:date>2011-04-20T16:05:35Z</dc:date>
    </item>
    <item>
      <title>Ignore Excel Sheet Name</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-Excel-Sheet-Name/m-p/224384#M76802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks guys! Leaving out the table portion worked perfectly.&lt;/P&gt;&lt;P&gt;Thank you Rakesh, but it isn't 100% what I am looking for...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2011 17:03:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-Excel-Sheet-Name/m-p/224384#M76802</guid>
      <dc:creator />
      <dc:date>2011-04-20T17:03:13Z</dc:date>
    </item>
    <item>
      <title>Ignore Excel Sheet Name</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-Excel-Sheet-Name/m-p/224385#M76803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Note that you can also refer to a sheet by it's number, ignoring the name.&lt;/P&gt;&lt;P&gt;table is @1&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2011 20:23:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-Excel-Sheet-Name/m-p/224385#M76803</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2011-04-20T20:23:11Z</dc:date>
    </item>
    <item>
      <title>Ignore Excel Sheet Name</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-Excel-Sheet-Name/m-p/224386#M76804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Rob. I didn't know this syntax.&lt;/P&gt;&lt;P&gt;It's going to be very helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2011 20:27:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-Excel-Sheet-Name/m-p/224386#M76804</guid>
      <dc:creator>erichshiino</dc:creator>
      <dc:date>2011-04-20T20:27:23Z</dc:date>
    </item>
    <item>
      <title>Ignore Excel Sheet Name</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-Excel-Sheet-Name/m-p/224387#M76805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;I tried that, based on some of your older posts, but I had no success.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas why?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks-&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Apr 2011 08:05:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-Excel-Sheet-Name/m-p/224387#M76805</guid>
      <dc:creator />
      <dc:date>2011-04-21T08:05:53Z</dc:date>
    </item>
    <item>
      <title>Ignore Excel Sheet Name</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-Excel-Sheet-Name/m-p/224388#M76806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I missed the point in your first post that you are using xlsx. The @n form does not work with xlsx and I don't know of a direct equivilent.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Apr 2011 17:30:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-Excel-Sheet-Name/m-p/224388#M76806</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2011-04-21T17:30:21Z</dc:date>
    </item>
    <item>
      <title>Re: Ignore Excel Sheet Name</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-Excel-Sheet-Name/m-p/224389#M76807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perfect answer - thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Aug 2016 08:43:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-Excel-Sheet-Name/m-p/224389#M76807</guid>
      <dc:creator />
      <dc:date>2016-08-22T08:43:45Z</dc:date>
    </item>
    <item>
      <title>Re: Ignore Excel Sheet Name</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-Excel-Sheet-Name/m-p/224390#M76808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Perfect answer - thanks!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Aug 2016 08:43:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-Excel-Sheet-Name/m-p/224390#M76808</guid>
      <dc:creator />
      <dc:date>2016-08-22T08:43:54Z</dc:date>
    </item>
  </channel>
</rss>

