<?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 how to load data from multiple excel files in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/how-to-load-data-from-multiple-excel-files/m-p/788128#M1040873</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 you pleasehelp me in this problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am trying to load data from many excel files .All these file names are starting with the word (data).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is only one sheet in all files with same format .The diffrent is three rows at the begining contain the tilte and other detials of the file but have same format . i need these rows to&lt;/P&gt;&lt;TABLE class="gt-baf-table"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD colspan="2"&gt;&lt;DIV class="gt-baf-cell gt-baf-word-clickable"&gt;differentiation&lt;/DIV&gt;&lt;/TD&gt;&lt;TD style="width: 100%;"&gt;&lt;DIV class="gt-baf-translations gt-baf-cell" style="direction: rtl;"&gt;&lt;SPAN class="gt-baf-back"&gt;لتفاضل&lt;/SPAN&gt;, &lt;SPAN class="gt-baf-back"&gt;تمييز&lt;/SPAN&gt;, &lt;SPAN class="gt-baf-back"&gt;مفاضلة&lt;/SPAN&gt;, &lt;SPAN class="gt-baf-back"&gt;تفريق&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i load these date&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Dec 2014 08:51:07 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-12-25T08:51:07Z</dc:date>
    <item>
      <title>how to load data from multiple excel files</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-load-data-from-multiple-excel-files/m-p/788128#M1040873</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 you pleasehelp me in this problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am trying to load data from many excel files .All these file names are starting with the word (data).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is only one sheet in all files with same format .The diffrent is three rows at the begining contain the tilte and other detials of the file but have same format . i need these rows to&lt;/P&gt;&lt;TABLE class="gt-baf-table"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD colspan="2"&gt;&lt;DIV class="gt-baf-cell gt-baf-word-clickable"&gt;differentiation&lt;/DIV&gt;&lt;/TD&gt;&lt;TD style="width: 100%;"&gt;&lt;DIV class="gt-baf-translations gt-baf-cell" style="direction: rtl;"&gt;&lt;SPAN class="gt-baf-back"&gt;لتفاضل&lt;/SPAN&gt;, &lt;SPAN class="gt-baf-back"&gt;تمييز&lt;/SPAN&gt;, &lt;SPAN class="gt-baf-back"&gt;مفاضلة&lt;/SPAN&gt;, &lt;SPAN class="gt-baf-back"&gt;تفريق&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i load these date&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Dec 2014 08:51:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-load-data-from-multiple-excel-files/m-p/788128#M1040873</guid>
      <dc:creator />
      <dc:date>2014-12-25T08:51:07Z</dc:date>
    </item>
    <item>
      <title>Re: how to load data from multiple excel files</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-load-data-from-multiple-excel-files/m-p/788129#M1040875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can load from multiple excel files using the wildcard character *.&lt;/P&gt;&lt;P&gt;If all sheets are the same except the first three rows, then you can skip those three rows by setting the header to 3 lines.&lt;/P&gt;&lt;P&gt;You can create a new field using the FileName() function so you can keep track of which record came from which file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MyExcelData:&lt;/P&gt;&lt;P&gt;LOAD *, &lt;STRONG&gt;FileName() as SourceFile&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;FROM &lt;D&gt;&lt;/D&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, &lt;STRONG&gt;header is 3 lines&lt;/STRONG&gt;,table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you also need the information from the first three lines you probably need to load that data in a separate table: Since you did not post an excel file I can't help you with that part.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Dec 2014 09:52:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-load-data-from-multiple-excel-files/m-p/788129#M1040875</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2014-12-25T09:52:15Z</dc:date>
    </item>
  </channel>
</rss>

