<?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: Load data from specific sheet of excel in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-data-from-specific-sheet-of-excel/m-p/25328#M782697</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply chanty&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Above link will load all the sheet .... where a I am looking to load the sheet when sheet name starts with IPV BSE*&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 Mar 2018 10:06:29 GMT</pubDate>
    <dc:creator>dsharmaqv</dc:creator>
    <dc:date>2018-03-14T10:06:29Z</dc:date>
    <item>
      <title>Load data from specific sheet of excel</title>
      <link>https://community.qlik.com/t5/QlikView/Load-data-from-specific-sheet-of-excel/m-p/25326#M782692</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;&lt;/P&gt;&lt;P&gt;I am trying to load from an excel file contains 2 sheets. IPV BSE Jan' 18 and IPV PRE Jan' 18.&lt;/P&gt;&lt;P&gt;How d I write the script which automatically picks the sheet name starts with IPV BSE* ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks in advance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-data-from-specific-sheet-of-excel/m-p/25326#M782692</guid>
      <dc:creator>dsharmaqv</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Load data from specific sheet of excel</title>
      <link>https://community.qlik.com/t5/QlikView/Load-data-from-specific-sheet-of-excel/m-p/25327#M782693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;check here&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-7860"&gt;Loading Multiple Excel Sheets Dynamically along with file name and sheet name&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Mar 2018 10:02:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-data-from-specific-sheet-of-excel/m-p/25327#M782693</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2018-03-14T10:02:29Z</dc:date>
    </item>
    <item>
      <title>Re: Load data from specific sheet of excel</title>
      <link>https://community.qlik.com/t5/QlikView/Load-data-from-specific-sheet-of-excel/m-p/25328#M782697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply chanty&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Above link will load all the sheet .... where a I am looking to load the sheet when sheet name starts with IPV BSE*&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Mar 2018 10:06:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-data-from-specific-sheet-of-excel/m-p/25328#M782697</guid>
      <dc:creator>dsharmaqv</dc:creator>
      <dc:date>2018-03-14T10:06:29Z</dc:date>
    </item>
    <item>
      <title>Re: Load data from specific sheet of excel</title>
      <link>https://community.qlik.com/t5/QlikView/Load-data-from-specific-sheet-of-excel/m-p/25329#M782701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you could try like that:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_15210341172878353 jive_text_macro" jivemacro_uid="_15210341172878353" modifiedtitle="true"&gt;
&lt;P&gt;FOR EACH file in FileList('C:\Users\admin\Desktop\Neuer Ordner (2)\*.xlsx');&lt;/P&gt;
&lt;P&gt;ODBC CONNECT32 TO [Excel Files;DBQ=$(file)];&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;tables: &lt;/P&gt;
&lt;P&gt;SQLtables; &lt;/P&gt;
&lt;P&gt;DISCONNECT;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;FOR i = 0 to NoOfRows('tables')-1&lt;/P&gt;
&lt;P&gt;LET sheetName = (purgeChar(purgeChar(peek('TABLE_NAME', i, 'tables'), chr(39)), chr(36)));&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;if left('$(sheetName)',7)='IPV BSE' then&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Table:&lt;/P&gt;
&lt;P&gt;Load&lt;/P&gt;
&lt;P&gt; *,&lt;/P&gt;
&lt;P&gt;FileBaseName()as File,&lt;/P&gt;
&lt;P&gt;FileDir() as Dir,&lt;/P&gt;
&lt;P&gt;FileName() as File_Name,&lt;/P&gt;
&lt;P&gt;'$(sheetName)' as Sheet_name&lt;/P&gt;
&lt;P&gt;From [$(file)] (ooxml, embedded labels, table is [$(sheetName)]);// where '$(sheetName)'='Tabelle1';&lt;/P&gt;
&lt;P&gt;ENDIF&lt;/P&gt;
&lt;P&gt;NEXT i&lt;/P&gt;
&lt;P&gt;Next&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Mar 2018 13:30:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-data-from-specific-sheet-of-excel/m-p/25329#M782701</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2018-03-14T13:30:45Z</dc:date>
    </item>
  </channel>
</rss>

