<?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 from Excel File in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Incremental-Load-from-Excel-File/m-p/1352518#M834510</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;i tried with your excel its working fine for me.&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, 29 May 2017 10:34:04 GMT</pubDate>
    <dc:creator>qlikview979</dc:creator>
    <dc:date>2017-05-29T10:34:04Z</dc:date>
    <item>
      <title>Incremental Load from Excel File</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-from-Excel-File/m-p/1352512#M834504</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 am trying to do incremental load from excel. I have below table for example. Initial Load, I have data till 15-Jan'17. Highlighted records have been added later. How do I merge the new record? I have created a sample logic for the same. But it seems its not working. Please advise!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Product.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/165069_Product.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-from-Excel-File/m-p/1352512#M834504</guid>
      <dc:creator>gayatri7</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load from Excel File</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-from-Excel-File/m-p/1352513#M834505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gayatri,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls refer this qlikview doc. Let me know if you have any question.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2017 10:11:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-from-Excel-File/m-p/1352513#M834505</guid>
      <dc:creator>kamal_sanguri</dc:creator>
      <dc:date>2017-05-29T10:11:40Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load from Excel File</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-from-Excel-File/m-p/1352514#M834506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you run it for the first time, it will load data till 15th Jan and subsequent run will bring remaining data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2017 10:13:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-from-Excel-File/m-p/1352514#M834506</guid>
      <dc:creator>kamal_sanguri</dc:creator>
      <dc:date>2017-05-29T10:13:36Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load from Excel File</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-from-Excel-File/m-p/1352515#M834507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Basically correct, however it is not clear, why you change the files.&lt;/P&gt;&lt;P&gt;Typically you would load the data.qvd, determine the last date, concatenate data from Excel beyond this date and store the new dataset into data.qvd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code might be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14960533864537518 jive_text_macro" jivemacro_uid="_14960533864537518" modifiedtitle="true"&gt;
&lt;P&gt;Sales:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD * FROM Sales.QVD (QVD);&lt;/P&gt;
&lt;P&gt;RecentUpdate:&lt;/P&gt;
&lt;P&gt;Load Max([Date Modified]) as MaximumDate Resident Sales;&lt;/P&gt;
&lt;P&gt;Let vLastUpdatedDate= Peek('MaximumDate', 0, Sales);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;CONCATENATE (Sales) LOAD * FROM [Product.xlsx]&lt;/P&gt;
&lt;P&gt;(ooxml, embedded labels, table is Sheet1)&lt;/P&gt;
&lt;P&gt;where ([Date Modified])&amp;gt; $(vLastUpdatedDate);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;STORE Sales INTO Sales.QVD (QVD);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14960533890286994" jivemacro_uid="_14960533890286994" modifiedtitle="true"&gt;&lt;/PRE&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2017 10:23:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-from-Excel-File/m-p/1352515#M834507</guid>
      <dc:creator>prieper</dc:creator>
      <dc:date>2017-05-29T10:23:33Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load from Excel File</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-from-Excel-File/m-p/1352516#M834508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Hi&amp;nbsp; may be,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;This is very full to you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.analyticsvidhya.com/blog/2014/09/qlikview-incremental-load/" title="https://www.analyticsvidhya.com/blog/2014/09/qlikview-incremental-load/"&gt;https://www.analyticsvidhya.com/blog/2014/09/qlikview-incremental-load/&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2017 10:26:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-from-Excel-File/m-p/1352516#M834508</guid>
      <dc:creator>qlikview979</dc:creator>
      <dc:date>2017-05-29T10:26:30Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load from Excel File</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-from-Excel-File/m-p/1352517#M834509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have gone through that article and tried implementing the same logic. But it is not working.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2017 10:29:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-from-Excel-File/m-p/1352517#M834509</guid>
      <dc:creator>gayatri7</dc:creator>
      <dc:date>2017-05-29T10:29:14Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load from Excel File</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-from-Excel-File/m-p/1352518#M834510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;i tried with your excel its working fine for me.&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, 29 May 2017 10:34:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-from-Excel-File/m-p/1352518#M834510</guid>
      <dc:creator>qlikview979</dc:creator>
      <dc:date>2017-05-29T10:34:04Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load from Excel File</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-from-Excel-File/m-p/1352519#M834511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gayatri,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the attached file for incremental load and on there the initial load script is commented which is for one time if required uncomment those script.&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, 29 May 2017 10:34:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-from-Excel-File/m-p/1352519#M834511</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2017-05-29T10:34:45Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load from Excel File</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-from-Excel-File/m-p/1352520#M834512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried like below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sales:&lt;/P&gt;&lt;P&gt;LOAD [Product ID], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Item, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sales, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Store Name], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Date Modified]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;store Sales into Incremental.qvd;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;//Calculating recent modified date in Sales.qvd&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;RecentUpdate:&lt;/P&gt;&lt;P&gt;Load Max([Date Modified]) as MaximumDate Resident Sales;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Let vLastUpdatedDate= Date(Peek('MaximumDate', 0, Sales));&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;drop table Sales;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;IncrementalSales:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;LOAD [Product ID], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Item, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sales, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Store Name], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Date Modified]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1)&lt;/P&gt;&lt;P&gt;where ([Date Modified])&amp;gt; $(vLastUpdatedDate);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;store IncrementalSales into Incremental.qvd;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2017 10:35:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-from-Excel-File/m-p/1352520#M834512</guid>
      <dc:creator>qlikview979</dc:creator>
      <dc:date>2017-05-29T10:35:45Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load from Excel File</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-from-Excel-File/m-p/1352521#M834513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just wanted to cross check whether it is only extracting the new record or not. I wanted to store in separate QVD and once verified .. I will concatenate with existing data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I am not getting any record in that step.&amp;nbsp; &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/confused.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2017 10:35:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-from-Excel-File/m-p/1352521#M834513</guid>
      <dc:creator>gayatri7</dc:creator>
      <dc:date>2017-05-29T10:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load from Excel File</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-from-Excel-File/m-p/1352522#M834514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hope you are using a field that is a combination of ProductID&amp;amp; Date &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2017 10:36:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-from-Excel-File/m-p/1352522#M834514</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2017-05-29T10:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load from Excel File</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-from-Excel-File/m-p/1352523#M834515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;are you getting any record s in Incremental.qvd. As I was not getting any record.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2017 10:37:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-from-Excel-File/m-p/1352523#M834515</guid>
      <dc:creator>gayatri7</dc:creator>
      <dc:date>2017-05-29T10:37:08Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load from Excel File</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-from-Excel-File/m-p/1352524#M834516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes,I am getting data&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2017 10:46:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-from-Excel-File/m-p/1352524#M834516</guid>
      <dc:creator>qlikview979</dc:creator>
      <dc:date>2017-05-29T10:46:36Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load from Excel File</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-from-Excel-File/m-p/1352525#M834517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gayatri,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Follow this steps&amp;nbsp; This is help full to you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First Paste added records in separate sheet&amp;nbsp; what you highlighted in Yellow color.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Load the Excel in qlikview , then go for reload ,you will get dates from Aug-15 to Jan-17.&lt;/P&gt;&lt;P&gt;2) Next Create QVD and reload Once again, check the qvd path its stored or not.Once stored the QVD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;Sales:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;LOAD [Product ID], &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Item, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sales, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Store Name], &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Date Modified]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;FROM&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;C&gt;&lt;/C&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;(ooxml, embedded labels, table is Sheet1);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;store Sales into Incremental.qvd;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) Take max date from date column by using&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3366ff; font-size: 10pt;"&gt;3)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;RecentUpdate:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;Load&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;DAte(Max([Date Modified]) )as MaximumDate&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;Resident Sales;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4) Create Variable like&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;&lt;SPAN style="color: #008080;"&gt;Let vLastUpdatedDate&lt;/SPAN&gt;= Date(Peek('MaximumDate', 0, &lt;/SPAN&gt;&lt;SPAN style="color: #ff0000; font-size: 10pt;"&gt;Sales&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;));&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Drop table Sales;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp; Then go for reload&amp;nbsp; , now variable will show highest date&amp;nbsp; (&lt;SPAN style="color: #0000ff;"&gt;15-Jan17&lt;/SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;5) Now past the&amp;nbsp; yellow color&amp;nbsp; data in same sheet .&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;6)Load the Table once again then Write the Where statement like below&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;IncrementalSales:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;LOAD [Product ID], &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Item, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sales, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Store Name], &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Date Modified]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;FROM&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;C&gt;&lt;/C&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;(ooxml, embedded labels, table is Sheet1)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;where ([Date Modified])&amp;gt; $(vLastUpdatedDate);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000; font-size: 10pt;"&gt;Concatenate(&lt;SPAN style="color: #ff0000; font-size: 13.3333px;"&gt;IncrementalSales&lt;/SPAN&gt;)&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #0000ff;"&gt;LOAD [Product ID], &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #0000ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Item, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #0000ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sales, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #0000ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Store Name], &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #0000ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Date Modified]&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #0000ff;"&gt;FROM&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #0000ff; font-size: 13.3333px;"&gt;Incremental.qvd;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000; font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;7) Over ride the&amp;nbsp; above stored qvd &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;like this &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #ff0000; font-size: 10pt;"&gt;store IncrementalSales into Incremental.qvd;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 10pt;"&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000; font-size: 10pt;"&gt;&lt;SPAN style="color: #333333;"&gt;Mahesh&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2017 11:08:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-from-Excel-File/m-p/1352525#M834517</guid>
      <dc:creator>qlikview979</dc:creator>
      <dc:date>2017-05-29T11:08:55Z</dc:date>
    </item>
  </channel>
</rss>

