<?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: Constantly Changing Excel Sheet Name in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Constantly-Changing-Excel-Sheet-Name/m-p/990450#M971836</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I seem to remember that you could wildcard the sheet name for an xls file, but I can't remember if the worked for xlsx as well as xsl format. The wildcard would open the first sheet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try &lt;EM&gt;table is *&lt;/EM&gt; or &lt;EM&gt;table is &lt;/EM&gt;&lt;LI&gt;&lt;EM&gt;.&lt;/EM&gt;&lt;/LI&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Sep 2015 14:34:01 GMT</pubDate>
    <dc:creator>jonathandienst</dc:creator>
    <dc:date>2015-09-07T14:34:01Z</dc:date>
    <item>
      <title>Constantly Changing Excel Sheet Name</title>
      <link>https://community.qlik.com/t5/QlikView/Constantly-Changing-Excel-Sheet-Name/m-p/990449#M971835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm sent an exported Excel file with one sheet in it once a week but there is an ever changing number at the start of the Excel sheet (6612 in my example below).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to Wildcard that part of the sheet name? Or another solution to be able to read the sheet regardless of its name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;H&gt;&lt;/H&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is [6612_flash2_gotfile-5]);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Sep 2015 14:24:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Constantly-Changing-Excel-Sheet-Name/m-p/990449#M971835</guid>
      <dc:creator>haymarketpaul</dc:creator>
      <dc:date>2015-09-07T14:24:42Z</dc:date>
    </item>
    <item>
      <title>Re: Constantly Changing Excel Sheet Name</title>
      <link>https://community.qlik.com/t5/QlikView/Constantly-Changing-Excel-Sheet-Name/m-p/990450#M971836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I seem to remember that you could wildcard the sheet name for an xls file, but I can't remember if the worked for xlsx as well as xsl format. The wildcard would open the first sheet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try &lt;EM&gt;table is *&lt;/EM&gt; or &lt;EM&gt;table is &lt;/EM&gt;&lt;LI&gt;&lt;EM&gt;.&lt;/EM&gt;&lt;/LI&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Sep 2015 14:34:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Constantly-Changing-Excel-Sheet-Name/m-p/990450#M971836</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-09-07T14:34:01Z</dc:date>
    </item>
    <item>
      <title>Re: Constantly Changing Excel Sheet Name</title>
      <link>https://community.qlik.com/t5/QlikView/Constantly-Changing-Excel-Sheet-Name/m-p/990451#M971837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Failing that, you can open the spreadsheet using an Excel ODBC connection, and then use the SqlTables function to return the sheet names:&lt;/P&gt;&lt;P class="Code"&gt;&lt;/P&gt;&lt;P class="Code"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; connect to ......;&amp;nbsp;&amp;nbsp;&amp;nbsp; // ODBC Excel connection to file&lt;/P&gt;&lt;P class="Code"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sheets:&lt;/P&gt;&lt;P class="Code"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sqltables;&lt;/P&gt;&lt;P class="Code"&gt;&lt;/P&gt;&lt;P class="Code"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Let vFirst = Peek('TABLE_NAME', 0);&amp;nbsp;&amp;nbsp; // assume that you want the first sheet....&lt;/P&gt;&lt;P class="Code"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DROP Table Sheets;&lt;/P&gt;&lt;P class="Code"&gt;&lt;/P&gt;&lt;P class="Code"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD * From ????.xlsx&lt;/P&gt;&lt;P class="Code"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (ooxml, sheet is [$(vFirst)], ...)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Sep 2015 14:39:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Constantly-Changing-Excel-Sheet-Name/m-p/990451#M971837</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-09-07T14:39:55Z</dc:date>
    </item>
    <item>
      <title>Re: Constantly Changing Excel Sheet Name</title>
      <link>https://community.qlik.com/t5/QlikView/Constantly-Changing-Excel-Sheet-Name/m-p/990452#M971838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Having since read a couple of other posts it sounds as though that functionality was removed at some stage.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appears as though i'll have to use ODBC.....and i've just seen your other reply.....thanks i'll give it a shot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Sep 2015 14:41:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Constantly-Changing-Excel-Sheet-Name/m-p/990452#M971838</guid>
      <dc:creator>haymarketpaul</dc:creator>
      <dc:date>2015-09-07T14:41:40Z</dc:date>
    </item>
    <item>
      <title>Re: Constantly Changing Excel Sheet Name</title>
      <link>https://community.qlik.com/t5/QlikView/Constantly-Changing-Excel-Sheet-Name/m-p/990453#M971839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If it's the first sheet you could leave the sheet-name and use (ooxml, embedded labels) as file-format - in older excel with xls as format you could use @n and a number for the sheet which you want - unfortunately is seems that this functionality isn't available with xlsx anymore - unless someone knew it better.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And of course the suggestion from &lt;A href="https://community.qlik.com/qlik-users/13229"&gt;jontydkpi&lt;/A&gt; will work and had further possibilties like reading from secured files with user and password, too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Sep 2015 14:54:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Constantly-Changing-Excel-Sheet-Name/m-p/990453#M971839</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-09-07T14:54:01Z</dc:date>
    </item>
    <item>
      <title>Re: Constantly Changing Excel Sheet Name</title>
      <link>https://community.qlik.com/t5/QlikView/Constantly-Changing-Excel-Sheet-Name/m-p/990454#M971840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perfect Thank You - it is just the first sheet needed and is simpler than using ODBC.&amp;nbsp; Learnt some useful things.&amp;nbsp; Thanks Both.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Sep 2015 15:02:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Constantly-Changing-Excel-Sheet-Name/m-p/990454#M971840</guid>
      <dc:creator>haymarketpaul</dc:creator>
      <dc:date>2015-09-07T15:02:58Z</dc:date>
    </item>
  </channel>
</rss>

