<?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: Concatenate several files in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Concatenate-several-files/m-p/633151#M232276</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then try with this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;*,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Filename( ) as Filename //Add this flag to get the details of the filename&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;C:\YourLocation\&lt;/STRONG&gt;DR_*.xlsx]&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(ooxml, embedded labels, table is [&lt;STRONG&gt;$(*)&lt;/STRONG&gt;]);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 May 2014 19:14:34 GMT</pubDate>
    <dc:creator>its_anandrjs</dc:creator>
    <dc:date>2014-05-29T19:14:34Z</dc:date>
    <item>
      <title>Concatenate several files</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenate-several-files/m-p/633145#M232270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have several xlsx files with the same start of a name they all start with DR_&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;They all have four identical columns names and i am in a need to load one table of the four identical columns from all the files..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What would be the best approach to concatenate?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thxs,&lt;/P&gt;&lt;P&gt;Alec&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 May 2014 17:49:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenate-several-files/m-p/633145#M232270</guid>
      <dc:creator>alec1982</dc:creator>
      <dc:date>2014-05-29T17:49:29Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate several files</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenate-several-files/m-p/633146#M232271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Keep all the files in same folder location and as you say they have same column name then concatenate them with load statement like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;*,&lt;/P&gt;&lt;P&gt;Filename( ) as Filename //Add this flag to get the details of the filename&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[&lt;STRONG&gt;C:\YourLocation\&lt;/STRONG&gt;DR_*.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change Your location as your folder location&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note:- The files have same column name and in same sheet1 and in single folder location this condition are must required.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 May 2014 17:59:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenate-several-files/m-p/633146#M232271</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-05-29T17:59:45Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate several files</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenate-several-files/m-p/633147#M232272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;place all files in same folder..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tab:&lt;/P&gt;&lt;P&gt;LOAD Field1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field2,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field3,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field4&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;DR_*.xlsx&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 May 2014 18:00:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenate-several-files/m-p/633147#M232272</guid>
      <dc:creator>PradeepReddy</dc:creator>
      <dc:date>2014-05-29T18:00:33Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate several files</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenate-several-files/m-p/633148#M232273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See if it works: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; COLUMN1, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; COLUMN2, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; column3, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; column4 &lt;/P&gt;&lt;P&gt;FROM &lt;/P&gt;&lt;P&gt;[Dr_ *. Xlsx &lt;/P&gt;&lt;P&gt;(OOXML, embedded labels, table is Sheet1);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 May 2014 18:00:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenate-several-files/m-p/633148#M232273</guid>
      <dc:creator>rogerioqv</dc:creator>
      <dc:date>2014-05-29T18:00:57Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate several files</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenate-several-files/m-p/633149#M232274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My files are failing to load due to having different sheet names.. any solution?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thxs for all your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 May 2014 19:02:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenate-several-files/m-p/633149#M232274</guid>
      <dc:creator>alec1982</dc:creator>
      <dc:date>2014-05-29T19:02:34Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate several files</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenate-several-files/m-p/633150#M232275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;loop on excel files&lt;/P&gt;&lt;P&gt;and for every file&lt;/P&gt;&lt;P&gt;read here&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/message/406594"&gt;Re: Pulling multiple excel sheets into QV when all headings are the same&lt;/A&gt;&lt;/P&gt;&lt;P&gt;to load the first sheet without knowing the name&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 May 2014 19:12:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenate-several-files/m-p/633150#M232275</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2014-05-29T19:12:23Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate several files</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenate-several-files/m-p/633151#M232276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then try with this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;*,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Filename( ) as Filename //Add this flag to get the details of the filename&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;C:\YourLocation\&lt;/STRONG&gt;DR_*.xlsx]&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(ooxml, embedded labels, table is [&lt;STRONG&gt;$(*)&lt;/STRONG&gt;]);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 May 2014 19:14:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenate-several-files/m-p/633151#M232276</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-05-29T19:14:34Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate several files</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenate-several-files/m-p/633152#M232277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thxs! This work for me!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 May 2014 19:19:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenate-several-files/m-p/633152#M232277</guid>
      <dc:creator>alec1982</dc:creator>
      <dc:date>2014-05-29T19:19:30Z</dc:date>
    </item>
  </channel>
</rss>

