<?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: Issue with incremental load using variable in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Issue-with-incremental-load-using-variable/m-p/266321#M1191772</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; I have used with variable, but not directly. But you can try using directly too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; And the where condition should be like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;CODE class="jive-code"&gt;LOAD Field1 &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,Field2&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,Year&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,Month&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;FROM&lt;BR /&gt;..\App\Data.xls&lt;BR /&gt;(ooxml, embedded labels, table is Sheet1)&lt;BR /&gt;Where Year &amp;gt; '$(vMaxYear)' and&lt;BR /&gt; Month &amp;gt; '$(vMaxMonth)'; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Jul 2011 10:02:56 GMT</pubDate>
    <dc:creator>kaushiknsolanki</dc:creator>
    <dc:date>2011-07-08T10:02:56Z</dc:date>
    <item>
      <title>Issue with incremental load using variable</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-incremental-load-using-variable/m-p/266314#M1191765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to do incremental load with the following script. But gives the error message saying that "Field not found - &amp;lt;MaxYear&amp;gt;". As per me everything looks to be correct only. Can some please tell me whats wrong with this script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;ExistingTable:&lt;/P&gt;&lt;P&gt;LOAD Field1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,Field2&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,Year&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month&lt;BR /&gt;..\App\Existing.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Temp:&lt;/P&gt;&lt;P&gt;Load Max(Year) AS MaxYear,Max(Month) AS MaxMonth Resident ExistingTable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate(ExistingTable)&lt;/P&gt;&lt;P&gt;&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; ,Year&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,Month&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;..\App\Data.xls&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1)&lt;/P&gt;&lt;P&gt;Where Year &amp;gt; $(vMaxYear)&lt;/P&gt;&lt;P&gt;Where Month &amp;gt; $(vMaxMonth);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attitude&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jul 2011 06:03:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-incremental-load-using-variable/m-p/266314#M1191765</guid>
      <dc:creator />
      <dc:date>2011-07-08T06:03:36Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with incremental load using variable</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-incremental-load-using-variable/m-p/266315#M1191766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think I need to pass the variable like below. Am I right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;Where Year &amp;gt; '$(vMaxYear)'&lt;/P&gt;&lt;P&gt;Where Month &amp;gt; '$(vMaxMonth)';&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attitude&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jul 2011 06:21:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-incremental-load-using-variable/m-p/266315#M1191766</guid>
      <dc:creator />
      <dc:date>2011-07-08T06:21:19Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with incremental load using variable</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-incremental-load-using-variable/m-p/266316#M1191767</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;Below is the change which I did. I hope this way incremental should be working fine. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I am trying to do here is I just want to append only those rows where the Year/Month &amp;gt; Existing(Max(Year)/Max(Month)). Please correct me if I am wrong any where here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;&lt;CODE class="jive-code"&gt;ExistingTable:&lt;BR /&gt;LOAD Field1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,Field2&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,Year&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month&lt;BR /&gt;..\App\Existing.qvd (qvd);&lt;/CODE&gt;&lt;/P&gt;&lt;CODE class="jive-code"&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;Temp:&lt;BR /&gt;Load Max(Year) AS MaxYear,Max(Month) AS MaxMonth Resident ExistingTable;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;Concatenate(ExistingTable)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;LOAD Field1 &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,Field2&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,Year&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,Month&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;FROM&lt;BR /&gt;..\App\Data.xls&lt;BR /&gt;(ooxml, embedded labels, table is Sheet1)&lt;BR /&gt;Where Year &amp;gt; '$(vMaxYear)'&lt;BR /&gt;Where Month &amp;gt; '$(vMaxMonth)';&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jul 2011 06:31:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-incremental-load-using-variable/m-p/266316#M1191767</guid>
      <dc:creator />
      <dc:date>2011-07-08T06:31:06Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with incremental load using variable</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-incremental-load-using-variable/m-p/266317#M1191768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;CODE class="jive-code"&gt;ExistingTable:&lt;BR /&gt;LOAD Field1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,Field2&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,Year&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month&lt;BR /&gt;..\App\Existing.qvd (qvd);&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Temp:&lt;BR /&gt;Load Max(Year) AS MaxYear,Max(Month) AS MaxMonth Resident ExistingTable;&lt;BR /&gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;let MaxYear = peek('MaxYear',0,'Temp');&lt;/P&gt;&lt;P&gt;let MaxMonth = peek('MaxMonth',0,'Temp');&lt;/P&gt;&lt;P&gt;&lt;CODE class="jive-code"&gt;&lt;BR /&gt;Concatenate(ExistingTable)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;LOAD Field1 &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,Field2&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,Year&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,Month&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;FROM&lt;BR /&gt;..\App\Data.xls&lt;BR /&gt;(ooxml, embedded labels, table is Sheet1)&lt;BR /&gt;Where Year &amp;gt; '$(vMaxYear)'&lt;BR /&gt;Where Month &amp;gt; '$(vMaxMonth)';&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jul 2011 06:41:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-incremental-load-using-variable/m-p/266317#M1191768</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2011-07-08T06:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with incremental load using variable</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-incremental-load-using-variable/m-p/266318#M1191769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Koushik&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help. I think there is one small mistake in the script given by you. I think you forgot to add &lt;STRONG&gt;v &lt;/STRONG&gt;infront of the variable name. If it is like that only then please let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;let &lt;STRONG&gt;v&lt;/STRONG&gt;MaxYear = peek('MaxYear',0,'Temp');&lt;/P&gt;&lt;P&gt;let &lt;STRONG&gt;v&lt;/STRONG&gt;MaxMonth = peek('MaxMonth',0,'Temp');&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the above changes are correct then I think I am passing the where condition('$(vMaxYear)' and '$(vMaxMonth)') is also correct only. If the above changes are incorrect then do I need to pass '$(MaxYear)' and '$(MaxMonth)' instead of ('$(vMaxYear)' and '$(vMaxMonth)').&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For your information, I have created the variable vMaxYear = Max(Year) and vMaxMonth=Max(Month).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&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; ,Year&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,Month&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;..\App\Data.xls&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1)&lt;/P&gt;&lt;P&gt;Where Year &amp;gt; '$(vMaxYear)'&lt;/P&gt;&lt;P&gt;Where Month &amp;gt; '$(vMaxMonth)'; &lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;Please tell me the exact changes are that are required in the script please. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attitude&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jul 2011 09:41:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-incremental-load-using-variable/m-p/266318#M1191769</guid>
      <dc:creator />
      <dc:date>2011-07-08T09:41:27Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with incremental load using variable</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-incremental-load-using-variable/m-p/266319#M1191770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Yes you are right,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; But its a variable name so you can write anything.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; But only thing is you need to make sure that you call that name to get the values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If your problem solved please mark this as answered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jul 2011 09:46:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-incremental-load-using-variable/m-p/266319#M1191770</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2011-07-08T09:46:30Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with incremental load using variable</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-incremental-load-using-variable/m-p/266320#M1191771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kaushik&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply. I have edited my post just few mins back. Please read it again. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is a variable name then shall I remove the variable which I have created? and use the following in the where condition?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;&lt;CODE class="jive-code"&gt;let vMaxYear = peek('MaxYear',0,'Temp');&lt;BR /&gt;let vMaxMonth = peek('MaxMonth',0,'Temp');&lt;BR /&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jul 2011 09:58:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-incremental-load-using-variable/m-p/266320#M1191771</guid>
      <dc:creator />
      <dc:date>2011-07-08T09:58:01Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with incremental load using variable</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-incremental-load-using-variable/m-p/266321#M1191772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; I have used with variable, but not directly. But you can try using directly too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; And the where condition should be like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;CODE class="jive-code"&gt;LOAD Field1 &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,Field2&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,Year&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,Month&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;FROM&lt;BR /&gt;..\App\Data.xls&lt;BR /&gt;(ooxml, embedded labels, table is Sheet1)&lt;BR /&gt;Where Year &amp;gt; '$(vMaxYear)' and&lt;BR /&gt; Month &amp;gt; '$(vMaxMonth)'; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jul 2011 10:02:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-incremental-load-using-variable/m-p/266321#M1191772</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2011-07-08T10:02:56Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with incremental load using variable</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-incremental-load-using-variable/m-p/266322#M1191773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Koushik&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May I know what is the use of peek? Though we are already calculating the the Max(Year/Month) in the temp table itself. Please explain! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Still it is not working as per my expectation. Once it works defiently I will mark it as a answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your support and time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attitude&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jul 2011 10:07:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-incremental-load-using-variable/m-p/266322#M1191773</guid>
      <dc:creator />
      <dc:date>2011-07-08T10:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with incremental load using variable</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-incremental-load-using-variable/m-p/266323#M1191774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; You have created a table which have max and min values. But you cant use it as a variable, as variable and field are different.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; So peek function is used to select the first value from the field.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Thus we have used&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;CODE class="jive-code"&gt;let vMaxYear = peek('MaxYear',0,'Temp');&lt;BR /&gt; let vMaxMonth = peek('MaxMonth',0,'Temp');&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; This will peek the first value from the MaxYear field coming from Temp table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jul 2011 10:12:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-incremental-load-using-variable/m-p/266323#M1191774</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2011-07-08T10:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with incremental load using variable</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-incremental-load-using-variable/m-p/266324#M1191775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Koushik&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Still I am little confused! Because any way "Temp" table will return only one row then what is the use Peek function to return the particular value from the first row? Why can't we use something like below?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;vMaxYear = MaxYear&lt;/P&gt;&lt;P&gt;vMaxMonth = MaxMonth&lt;/P&gt;&lt;P&gt;vMaxYearMonth = MaxYearMonth&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please explain it for my better understanding!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attitude&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jul 2011 11:08:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-incremental-load-using-variable/m-p/266324#M1191775</guid>
      <dc:creator />
      <dc:date>2011-07-08T11:08:53Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with incremental load using variable</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-incremental-load-using-variable/m-p/266325#M1191776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Actually you need to tell qlikview that which value you want&amp;nbsp; and from which field of which table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; You tried doing what you said, and you didnt succeed, try using peek. It will solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jul 2011 11:14:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-incremental-load-using-variable/m-p/266325#M1191776</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2011-07-08T11:14:20Z</dc:date>
    </item>
  </channel>
</rss>

