<?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: incremental load in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/incremental-load/m-p/1834133#M1214767</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try like below&lt;/P&gt;&lt;P&gt;Last_Updated_Date:&lt;BR /&gt;LOAD&lt;BR /&gt;Date(max(date),'MM/DD/YYYY') as maxdate&lt;BR /&gt;From&lt;BR /&gt;[D:\Qlik\personnal\inc_layer1.qvd]&lt;BR /&gt;(qvd);&lt;/P&gt;&lt;P&gt;LET vLast_Updated_Date = Peek('maxdate',0,'Last_Updated_Date');&lt;BR /&gt;//DROP Table Last_Updated_Date;&lt;/P&gt;&lt;P&gt;SourceDate:&lt;BR /&gt;LOAD ID,&lt;BR /&gt;Status,&lt;BR /&gt;date&lt;BR /&gt;FROM&lt;BR /&gt;[D:\Qlik\personnal\Incremental test.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is Sheet1)&lt;BR /&gt;where date &amp;gt; Date('$(vLast_Updated_Date)','MM/DD/YYYY');&lt;/P&gt;&lt;P&gt;Concatenate(SourceDate)&lt;BR /&gt;LOAD ID,&lt;BR /&gt;Status,&lt;BR /&gt;date&lt;BR /&gt;FROM&lt;BR /&gt;[D:\Qlik\personnal\inc_layer1.qvd]&lt;BR /&gt;(qvd);&lt;/P&gt;&lt;P&gt;store * from SourceDate into inc_layer1.qvd(qvd);&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.analyticsvidhya.com/blog/2014/09/qlikview-incremental-load/" target="_blank"&gt;https://www.analyticsvidhya.com/blog/2014/09/qlikview-incremental-load/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 07 Sep 2021 04:31:45 GMT</pubDate>
    <dc:creator>MayilVahanan</dc:creator>
    <dc:date>2021-09-07T04:31:45Z</dc:date>
    <item>
      <title>incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/incremental-load/m-p/1834053#M1214762</link>
      <description>&lt;P&gt;Hi All,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to implement Incremental load with the followwing script but after load it shows zero lines fetched .&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have attahced the excel sheet from which I fetched the data then conevrted to qvd format .&lt;/P&gt;&lt;P&gt;I am confused like where I am going wrong can someoen please help me with this ? below is the code for incremental load&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;IncrementalLayer:&lt;BR /&gt;LOAD ID,&lt;BR /&gt;Status,&lt;BR /&gt;date&lt;BR /&gt;FROM&lt;BR /&gt;inc_layer1.qvd&lt;BR /&gt;(qvd);&lt;/P&gt;&lt;P&gt;Last_Updated_Date:&lt;BR /&gt;LOAD&lt;BR /&gt;Date(max(date),'MM/DD/YYYY') as maxdate&lt;BR /&gt;Resident IncrementalLayer;&lt;BR /&gt;LET vLast_Updated_Date = Peek('maxdate',0,'Last_Updated_Date');&lt;BR /&gt;DROP Table IncrementalLayer;&lt;/P&gt;&lt;P&gt;SourceDate:&lt;BR /&gt;LOAD ID,&lt;BR /&gt;Status,&lt;BR /&gt;date&lt;BR /&gt;FROM&lt;BR /&gt;[Incremental test.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is Sheet1)&lt;BR /&gt;where date &amp;gt; Date('$(vLast_Updated_Date)','MM/DD/YYYY');&lt;BR /&gt;store * from SourceDate into inc_layer1.qvd(qvd);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks in advance&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Sep 2021 15:24:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/incremental-load/m-p/1834053#M1214762</guid>
      <dc:creator>smilingjohn</dc:creator>
      <dc:date>2021-09-06T15:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/incremental-load/m-p/1834133#M1214767</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try like below&lt;/P&gt;&lt;P&gt;Last_Updated_Date:&lt;BR /&gt;LOAD&lt;BR /&gt;Date(max(date),'MM/DD/YYYY') as maxdate&lt;BR /&gt;From&lt;BR /&gt;[D:\Qlik\personnal\inc_layer1.qvd]&lt;BR /&gt;(qvd);&lt;/P&gt;&lt;P&gt;LET vLast_Updated_Date = Peek('maxdate',0,'Last_Updated_Date');&lt;BR /&gt;//DROP Table Last_Updated_Date;&lt;/P&gt;&lt;P&gt;SourceDate:&lt;BR /&gt;LOAD ID,&lt;BR /&gt;Status,&lt;BR /&gt;date&lt;BR /&gt;FROM&lt;BR /&gt;[D:\Qlik\personnal\Incremental test.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is Sheet1)&lt;BR /&gt;where date &amp;gt; Date('$(vLast_Updated_Date)','MM/DD/YYYY');&lt;/P&gt;&lt;P&gt;Concatenate(SourceDate)&lt;BR /&gt;LOAD ID,&lt;BR /&gt;Status,&lt;BR /&gt;date&lt;BR /&gt;FROM&lt;BR /&gt;[D:\Qlik\personnal\inc_layer1.qvd]&lt;BR /&gt;(qvd);&lt;/P&gt;&lt;P&gt;store * from SourceDate into inc_layer1.qvd(qvd);&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.analyticsvidhya.com/blog/2014/09/qlikview-incremental-load/" target="_blank"&gt;https://www.analyticsvidhya.com/blog/2014/09/qlikview-incremental-load/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Sep 2021 04:31:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/incremental-load/m-p/1834133#M1214767</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2021-09-07T04:31:45Z</dc:date>
    </item>
  </channel>
</rss>

