<?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 Multiple excel sheets dynamically without using Macro or ODBC in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-Multiple-excel-sheets-dynamically-without-using-Macro-or/m-p/54#M11</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not exactly, But how your source stored? In DB / Flat files?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 12 Jan 2018 14:02:24 GMT</pubDate>
    <dc:creator>Anil_Babu_Samineni</dc:creator>
    <dc:date>2018-01-12T14:02:24Z</dc:date>
    <item>
      <title>Load Multiple excel sheets dynamically without using Macro or ODBC</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Multiple-excel-sheets-dynamically-without-using-Macro-or/m-p/47#M4</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Herewith attached the source format, is it possible to load in QlikView without using macro or ODBC/OLEDB connection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your help is much appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please note there might adding more sheets on Ad hoc basis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;NR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Jan 2018 12:50:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Multiple-excel-sheets-dynamically-without-using-Macro-or/m-p/47#M4</guid>
      <dc:creator>nirmalraj_kj</dc:creator>
      <dc:date>2018-01-12T12:50:23Z</dc:date>
    </item>
    <item>
      <title>Re: Load Multiple excel sheets dynamically without using Macro or ODBC</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Multiple-excel-sheets-dynamically-without-using-Macro-or/m-p/48#M5</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not really. If you could add all possible sheetnames within a loop-routine and fetched possible errors with the ERROMODE it might be sufficient for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Jan 2018 13:19:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Multiple-excel-sheets-dynamically-without-using-Macro-or/m-p/48#M5</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2018-01-12T13:19:52Z</dc:date>
    </item>
    <item>
      <title>Re: Load Multiple excel sheets dynamically without using Macro or ODBC</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Multiple-excel-sheets-dynamically-without-using-Macro-or/m-p/49#M6</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If Sheets are static then Use Concatenate like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables: &lt;/P&gt;&lt;P&gt;LOAD * FROM &lt;C&gt; (ooxml, embedded labels, table is Chennai);&lt;/C&gt;&lt;/P&gt;&lt;P&gt;Concatenate(tables)&lt;/P&gt;&lt;P&gt;LOAD * FROM &lt;C&gt; (ooxml, embedded labels, table is Bangalore);&lt;/C&gt;&lt;/P&gt;&lt;P&gt;Concatenate(tables)&lt;/P&gt;&lt;P&gt;LOAD * FROM &lt;C&gt; (ooxml, embedded labels, table is Mumbai);&lt;/C&gt;&lt;/P&gt;&lt;P&gt;Concatenate(tables)&lt;/P&gt;&lt;P&gt;LOAD * FROM &lt;C&gt; (ooxml, embedded labels, table is Delhi);&lt;/C&gt;&lt;/P&gt;&lt;P&gt;Concatenate(tables)&lt;/P&gt;&lt;P&gt;LOAD * FROM &lt;C&gt; (ooxml, embedded labels, table is Pune);&lt;/C&gt;&lt;/P&gt;&lt;P&gt;Concatenate(tables)&lt;/P&gt;&lt;P&gt;LOAD * FROM &lt;C&gt; (ooxml, embedded labels, table is Hyderabad);&lt;/C&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or, If dynamic you could use For Each loop &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>Fri, 12 Jan 2018 13:25:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Multiple-excel-sheets-dynamically-without-using-Macro-or/m-p/49#M6</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2018-01-12T13:25:18Z</dc:date>
    </item>
    <item>
      <title>Re: Load Multiple excel sheets dynamically without using Macro or ODBC</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Multiple-excel-sheets-dynamically-without-using-Macro-or/m-p/50#M7</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your response, I have mentioned in my question that we have to load the data dynamically rather using ODBC/OLED or Macro. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and I mentioned there might add some more sheets in future in that case how can we write concatenate. This is not a dynamic way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Nirmal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Jan 2018 13:52:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Multiple-excel-sheets-dynamically-without-using-Macro-or/m-p/50#M7</guid>
      <dc:creator>nirmalraj_kj</dc:creator>
      <dc:date>2018-01-12T13:52:51Z</dc:date>
    </item>
    <item>
      <title>Re: Load Multiple excel sheets dynamically without using Macro or ODBC</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Multiple-excel-sheets-dynamically-without-using-Macro-or/m-p/51#M8</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply Marcus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That is not possible in my case I have more that 50 sheets and it might increase in future. I have to load this dynamically without changing code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Jan 2018 13:54:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Multiple-excel-sheets-dynamically-without-using-Macro-or/m-p/51#M8</guid>
      <dc:creator>nirmalraj_kj</dc:creator>
      <dc:date>2018-01-12T13:54:30Z</dc:date>
    </item>
    <item>
      <title>Re: Load Multiple excel sheets dynamically without using Macro or ODBC</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Multiple-excel-sheets-dynamically-without-using-Macro-or/m-p/52#M9</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's why I have initiated Plan B for you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Jan 2018 13:56:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Multiple-excel-sheets-dynamically-without-using-Macro-or/m-p/52#M9</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2018-01-12T13:56:04Z</dc:date>
    </item>
    <item>
      <title>Re: Load Multiple excel sheets dynamically without using Macro or ODBC</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Multiple-excel-sheets-dynamically-without-using-Macro-or/m-p/53#M10</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You mean using ODBC?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Jan 2018 13:58:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Multiple-excel-sheets-dynamically-without-using-Macro-or/m-p/53#M10</guid>
      <dc:creator>nirmalraj_kj</dc:creator>
      <dc:date>2018-01-12T13:58:31Z</dc:date>
    </item>
    <item>
      <title>Re: Load Multiple excel sheets dynamically without using Macro or ODBC</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Multiple-excel-sheets-dynamically-without-using-Macro-or/m-p/54#M11</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not exactly, But how your source stored? In DB / Flat files?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Jan 2018 14:02:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Multiple-excel-sheets-dynamically-without-using-Macro-or/m-p/54#M11</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2018-01-12T14:02:24Z</dc:date>
    </item>
    <item>
      <title>Re: Load Multiple excel sheets dynamically without using Macro or ODBC</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Multiple-excel-sheets-dynamically-without-using-Macro-or/m-p/55#M12</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Excel spread sheet...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Jan 2018 14:03:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Multiple-excel-sheets-dynamically-without-using-Macro-or/m-p/55#M12</guid>
      <dc:creator>nirmalraj_kj</dc:creator>
      <dc:date>2018-01-12T14:03:31Z</dc:date>
    </item>
    <item>
      <title>Re: Load Multiple excel sheets dynamically without using Macro or ODBC</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Multiple-excel-sheets-dynamically-without-using-Macro-or/m-p/56#M13</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to know (or at least to guess the possible sheetnames) or using odbc/macros to keep the loadings dynamically. Maybe the citys which are used as sheetnames are also stored anywhere else from which it could be read ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Jan 2018 14:20:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Multiple-excel-sheets-dynamically-without-using-Macro-or/m-p/56#M13</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2018-01-12T14:20:48Z</dc:date>
    </item>
  </channel>
</rss>

