<?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 Reading Multiple Excel files along with table names using loop statement in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Reading-Multiple-Excel-files-along-with-table-names-using-loop/m-p/2153630#M93452</link>
    <description>&lt;PRE&gt;&lt;CODE&gt;FileList:
LOAD * INLINE [
    FileName, TableName
    REGION.XLS, REGION$
    DIVISION.XLS, DIVISION$
];


FOR i = 0 TO NoOfRows('FileList') - 1

    LET FileName = peek('FileName', i, 'FileList'); 
    LET TableName = peek('TableName', i, 'FileList'); 

    div_reg_table:
    LOAD
        *
    FROM '$(FileName)'
    (biff, embedded labels, table is '$(TableName)');

NEXT&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 15 Nov 2024 21:10:19 GMT</pubDate>
    <dc:creator>MEDHA07</dc:creator>
    <dc:date>2024-11-15T21:10:19Z</dc:date>
    <item>
      <title>Reading Multiple Excel files along with table names using loop statement</title>
      <link>https://community.qlik.com/t5/App-Development/Reading-Multiple-Excel-files-along-with-table-names-using-loop/m-p/2153630#M93452</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;FileList:
LOAD * INLINE [
    FileName, TableName
    REGION.XLS, REGION$
    DIVISION.XLS, DIVISION$
];


FOR i = 0 TO NoOfRows('FileList') - 1

    LET FileName = peek('FileName', i, 'FileList'); 
    LET TableName = peek('TableName', i, 'FileList'); 

    div_reg_table:
    LOAD
        *
    FROM '$(FileName)'
    (biff, embedded labels, table is '$(TableName)');

NEXT&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 15 Nov 2024 21:10:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Reading-Multiple-Excel-files-along-with-table-names-using-loop/m-p/2153630#M93452</guid>
      <dc:creator>MEDHA07</dc:creator>
      <dc:date>2024-11-15T21:10:19Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Multiple Excel files along with table names using loop statement</title>
      <link>https://community.qlik.com/t5/App-Development/Reading-Multiple-Excel-files-along-with-table-names-using-loop/m-p/2153745#M93465</link>
      <description>&lt;P&gt;Hi, is this a question or&amp;nbsp; hint? If it fails it migh be because if the excel is in another folder of the QVW it will need the path for the excel.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Dec 2023 08:22:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Reading-Multiple-Excel-files-along-with-table-names-using-loop/m-p/2153745#M93465</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2023-12-16T08:22:06Z</dc:date>
    </item>
  </channel>
</rss>

