<?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: How to load Multiple file into a qlikview? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-load-Multiple-file-into-a-qlikview/m-p/769168#M273155</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;Then try this load script this works for only xlsx files and this loads all excel file from existing source folder and add the FileName() function for identify file name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET Path = 'D:\';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load *,&lt;/P&gt;&lt;P&gt;FileName() as FileFlag&lt;/P&gt;&lt;P&gt;From&lt;/P&gt;&lt;P&gt;[Path\* .xlsx]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Jan 2015 07:15:25 GMT</pubDate>
    <dc:creator>its_anandrjs</dc:creator>
    <dc:date>2015-01-12T07:15:25Z</dc:date>
    <item>
      <title>How to load Multiple file into a qlikview?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-load-Multiple-file-into-a-qlikview/m-p/769164#M273151</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 have 65 files in excel format, all files name are different but field name are same. How can I load those files into a qlikview? Please help..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanking You.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anup Kumar Patra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2015 07:10:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-load-Multiple-file-into-a-qlikview/m-p/769164#M273151</guid>
      <dc:creator />
      <dc:date>2015-01-12T07:10:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to load Multiple file into a qlikview?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-load-Multiple-file-into-a-qlikview/m-p/769165#M273152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If all the files are kept in same directory, then try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load * From C:\Path\*.xlsx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2015 07:13:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-load-Multiple-file-into-a-qlikview/m-p/769165#M273152</guid>
      <dc:creator>anbu1984</dc:creator>
      <dc:date>2015-01-12T07:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to load Multiple file into a qlikview?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-load-Multiple-file-into-a-qlikview/m-p/769166#M273153</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;Try like&lt;/P&gt;&lt;P&gt;load *&lt;/P&gt;&lt;P&gt;from filepath/*.qvd&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2015 07:13:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-load-Multiple-file-into-a-qlikview/m-p/769166#M273153</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2015-01-12T07:13:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to load Multiple file into a qlikview?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-load-Multiple-file-into-a-qlikview/m-p/769167#M273154</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;use wildcards in the filename&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="_jivemacro_uid_14210468881388985 jive_text_macro jive_macro_code" jivemacro_uid="_14210468881388985" modifiedtitle="true"&gt;
&lt;P&gt;table1:&lt;/P&gt;
&lt;P&gt;LOAD *&lt;/P&gt;
&lt;P&gt;FROM path\*.xlsx&lt;/P&gt;
&lt;P&gt;(ooxml, embedded labels, table is sheet1);&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2015 07:15:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-load-Multiple-file-into-a-qlikview/m-p/769167#M273154</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2015-01-12T07:15:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to load Multiple file into a qlikview?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-load-Multiple-file-into-a-qlikview/m-p/769168#M273155</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;Then try this load script this works for only xlsx files and this loads all excel file from existing source folder and add the FileName() function for identify file name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET Path = 'D:\';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load *,&lt;/P&gt;&lt;P&gt;FileName() as FileFlag&lt;/P&gt;&lt;P&gt;From&lt;/P&gt;&lt;P&gt;[Path\* .xlsx]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2015 07:15:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-load-Multiple-file-into-a-qlikview/m-p/769168#M273155</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2015-01-12T07:15:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to load Multiple file into a qlikview?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-load-Multiple-file-into-a-qlikview/m-p/769169#M273156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks to all. All sugeations are working fine. But here I have some question suppose in my Excel list one or two excel are modified then that time I have to reload all the file u&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;nnecessarily, is there any solution for that?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You all of you for the reply.&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anup Kumar Patra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2015 08:26:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-load-Multiple-file-into-a-qlikview/m-p/769169#M273156</guid>
      <dc:creator />
      <dc:date>2015-01-12T08:26:35Z</dc:date>
    </item>
  </channel>
</rss>

