<?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: Reading a Delta-File from a certain Date in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Reading-a-Delta-File-from-a-certain-Date/m-p/1544878#M62797</link>
    <description>&lt;P&gt;Thank you very much for your help. It works perfectly!&lt;/P&gt;</description>
    <pubDate>Fri, 15 Feb 2019 11:05:10 GMT</pubDate>
    <dc:creator>thanhphongle</dc:creator>
    <dc:date>2019-02-15T11:05:10Z</dc:date>
    <item>
      <title>Reading a Delta-File from a certain Date</title>
      <link>https://community.qlik.com/t5/App-Development/Reading-a-Delta-File-from-a-certain-Date/m-p/1544819#M62795</link>
      <description>&lt;P&gt;Hello together,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am receiving &amp;nbsp;from our business partner everyday a delta-file&lt;/P&gt;&lt;P&gt;2019-01-14_sale_orders.xlsx&lt;/P&gt;&lt;P&gt;2019-01-15_sale_orders.xlsx&lt;/P&gt;&lt;P&gt;2019-01-16_sale_orders.xlsx&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;which includes sales Information.&lt;/P&gt;&lt;P&gt;I am using the command LOAD Field1, Field2, ... FROM Path\*.xlsx in order to load the files.&lt;/P&gt;&lt;P&gt;From the beginning of 15.01.2019&amp;nbsp; our business partner added a new field called Status = {cancallation, retour, order}, some kind of flag in the file&lt;/P&gt;&lt;P&gt;2019-01-15_sale_orders.xlsx&lt;/P&gt;&lt;P&gt;When I try to add the new field in the script, after some time the script loading fails because it cant find the new field Status in the files before.&lt;/P&gt;&lt;P&gt;Is there a way to define a command which loads reads the csv. from the date&lt;/P&gt;&lt;P&gt;2019-01-15_sale_orders.xlsx&lt;/P&gt;&lt;P&gt;2019-01-16_sale_orders.xlsx&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;?&lt;/P&gt;&lt;P&gt;My Idea was to load sepparatly the fields&lt;/P&gt;&lt;P&gt;Status,&lt;/P&gt;&lt;P&gt;Ordernumber&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and use an APPLY MAP afterwards.&lt;/P&gt;&lt;P&gt;Or is there a better solution in case of the Business Partner is adding new fields that i dont need to do it that way anymore?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope you can help me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Apr 2021 07:48:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Reading-a-Delta-File-from-a-certain-Date/m-p/1544819#M62795</guid>
      <dc:creator>thanhphongle</dc:creator>
      <dc:date>2021-04-02T07:48:15Z</dc:date>
    </item>
    <item>
      <title>Re: Reading a Delta-File from a certain Date</title>
      <link>https://community.qlik.com/t5/App-Development/Reading-a-Delta-File-from-a-certain-Date/m-p/1544857#M62796</link>
      <description>&lt;P&gt;Rather than a simple wildcard, you need to use a For Each load so you can control the concatenation. Pattern like this:&lt;/P&gt;&lt;PRE&gt;SALES:
LOAD 0 as Dummy
AUTOGENERATE 0; 

For Each vFile in FileList('Path\*.xlsx')4
	Concatenate(SALES)
	LOAD * 
	FROM [$(vFile)]
	(ooxml);
Next

DROP Field Dummy;&lt;/PRE&gt;&lt;P&gt;The extra field(s) will have NULL values for the earlier dates.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Feb 2019 10:40:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Reading-a-Delta-File-from-a-certain-Date/m-p/1544857#M62796</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2019-02-15T10:40:13Z</dc:date>
    </item>
    <item>
      <title>Re: Reading a Delta-File from a certain Date</title>
      <link>https://community.qlik.com/t5/App-Development/Reading-a-Delta-File-from-a-certain-Date/m-p/1544878#M62797</link>
      <description>&lt;P&gt;Thank you very much for your help. It works perfectly!&lt;/P&gt;</description>
      <pubDate>Fri, 15 Feb 2019 11:05:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Reading-a-Delta-File-from-a-certain-Date/m-p/1544878#M62797</guid>
      <dc:creator>thanhphongle</dc:creator>
      <dc:date>2019-02-15T11:05:10Z</dc:date>
    </item>
  </channel>
</rss>

