<?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 Change in .xlsx file format in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Change-in-xlsx-file-format/m-p/1068542#M357080</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have Multiple files in directory.Say file per day.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And there is a change in the Source file structure.Additional fields has been added. From say starting of Apr 3rd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to handle this while reading it self, since while Load instead of * field names are used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions on how to concatenate data from Apr 3rd. File names has date on it as well.&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Apr 2016 15:31:35 GMT</pubDate>
    <dc:creator>kmswetha</dc:creator>
    <dc:date>2016-04-06T15:31:35Z</dc:date>
    <item>
      <title>Change in .xlsx file format</title>
      <link>https://community.qlik.com/t5/QlikView/Change-in-xlsx-file-format/m-p/1068542#M357080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have Multiple files in directory.Say file per day.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And there is a change in the Source file structure.Additional fields has been added. From say starting of Apr 3rd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to handle this while reading it self, since while Load instead of * field names are used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions on how to concatenate data from Apr 3rd. File names has date on it as well.&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 15:31:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-in-xlsx-file-format/m-p/1068542#M357080</guid>
      <dc:creator>kmswetha</dc:creator>
      <dc:date>2016-04-06T15:31:35Z</dc:date>
    </item>
    <item>
      <title>Re: Change in .xlsx file format</title>
      <link>https://community.qlik.com/t5/QlikView/Change-in-xlsx-file-format/m-p/1068543#M357081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In these cases you couldn't use a wildcard-load anymore and needed to change to load your data within a filelist-loop and force within them a concatenation:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/3274"&gt;Loops in the Script&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/message/960853"&gt;Re: Load multiples files with different headers&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 15:46:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-in-xlsx-file-format/m-p/1068543#M357081</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2016-04-06T15:46:44Z</dc:date>
    </item>
    <item>
      <title>Re: Change in .xlsx file format</title>
      <link>https://community.qlik.com/t5/QlikView/Change-in-xlsx-file-format/m-p/1068544#M357082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you do something like below, you can iterate through excel files and still use LOAD *. However, it will be obvious after you do this that the "additional" field values will be null for rows that came from files that did NOT contain the "additional" fields in them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt; font-family: 'courier new', courier;"&gt;MyFinalTable:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;LOAD * inline [&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; dummyfield&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;FOR EACH vFile in FileList('c:\MyDataFiles\MyDataFile_*.xlsx') // where filename is MyDataFile_&amp;lt;YYYYMMMDD&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; Concatenate (MyFinalTable)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; LOAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; *,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; '$(vFile)' as SourceFile&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; FROM&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; $(vFile)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; (ooxml, embedded labels, table is Sheet1);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;NEXT&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt; font-family: 'courier new', courier;"&gt;DROP FIELD dummyfield from&amp;nbsp; MyFinalTable;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 20:44:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-in-xlsx-file-format/m-p/1068544#M357082</guid>
      <dc:creator>jlongoria</dc:creator>
      <dc:date>2016-04-06T20:44:24Z</dc:date>
    </item>
  </channel>
</rss>

