<?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: full load only if the file is changed.. in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/full-load-only-if-the-file-is-changed/m-p/1214643#M853039</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Sasi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it throwed me the following error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;following is from document log&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;18-02-17 7:19:58 AM: 1002&amp;nbsp;&amp;nbsp;&amp;nbsp; Let vActualDate =Today()&lt;/P&gt;&lt;P&gt;18-02-17 7:19:58 AM: 1004&amp;nbsp;&amp;nbsp;&amp;nbsp; Let VLastModifiedDate = peek ( 'ModifiedDate', 0 , ' tmp ')&lt;/P&gt;&lt;P&gt;18-02-17 7:19:58 AM: 1007&amp;nbsp;&amp;nbsp;&amp;nbsp; If (18-02-17=18-02-17)&amp;nbsp; OR&lt;/P&gt;&lt;P&gt;18-02-17 7:19:58 AM:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Error: Script line error: &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 18 Feb 2017 13:23:14 GMT</pubDate>
    <dc:creator>gauthamchilled</dc:creator>
    <dc:date>2017-02-18T13:23:14Z</dc:date>
    <item>
      <title>full load only if the file is changed..</title>
      <link>https://community.qlik.com/t5/QlikView/full-load-only-if-the-file-is-changed/m-p/1214639#M853035</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;Our dashboard is scheduled to run 12 am and 12 pm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement to reload the file only if is modified in a day. My code is below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;File:&lt;/P&gt;&lt;P&gt;Load&amp;nbsp; Date(filetime()) as ModifiedDate &lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[..\Config\SectionAccessFile.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let vActualDate =Today();&lt;/P&gt;&lt;P&gt;Let VLastModifiedDate = peek ( 'ModifiedDate', 0 , ' tmp ');&lt;/P&gt;&lt;P&gt;if&amp;nbsp; $(VLastModifiedDate)=$(vActualDate)&amp;nbsp; Then&lt;/P&gt;&lt;P&gt;//Full load happens below&lt;/P&gt;&lt;P&gt;Load * from Fulltable&lt;/P&gt;&lt;P&gt;ELSE&lt;/P&gt;&lt;P&gt;// QVD loads happen below&lt;/P&gt;&lt;P&gt;Load * from QVDtable&lt;/P&gt;&lt;P&gt;End if&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem i face is, if someone modifies the file after 12 PM, the dashboard is not doing the full load. The issue here is the date changes at 12 AM, so the condition &lt;SPAN style="font-size: 13.3333px;"&gt;if&amp;nbsp; $(VLastModifiedDate)=$(vActualDate)&amp;nbsp; fails and picks up the QVD.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyone give me suggestion, how to rectifies this???&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/full-load-only-if-the-file-is-changed/m-p/1214639#M853035</guid>
      <dc:creator>gauthamchilled</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: full load only if the file is changed..</title>
      <link>https://community.qlik.com/t5/QlikView/full-load-only-if-the-file-is-changed/m-p/1214640#M853036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI ,&lt;/P&gt;&lt;P&gt;Add another condition to check &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;if&amp;nbsp; $(VLastModifiedDate)=$(vActualDate)&amp;nbsp; OR&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;($(VLastModifiedDate)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;&amp;gt;=&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;Timestamp(date(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;$(vActualDate) &lt;/SPAN&gt;-1)+12/24)) and &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;$(VLastModifiedDate)&lt;/SPAN&gt;&amp;lt;=&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;$(vActualDate))&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2017 07:30:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/full-load-only-if-the-file-is-changed/m-p/1214640#M853036</guid>
      <dc:creator>sasikanth</dc:creator>
      <dc:date>2017-02-17T07:30:11Z</dc:date>
    </item>
    <item>
      <title>Re: full load only if the file is changed..</title>
      <link>https://community.qlik.com/t5/QlikView/full-load-only-if-the-file-is-changed/m-p/1214641#M853037</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;Do as below:&lt;/P&gt;&lt;P&gt;Let v_Now=Now()&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Let vActualDate =Today();&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Let VLastModifiedDate = peek ( 'ModifiedDate', 0 , ' tmp ');&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;if&amp;nbsp; (&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Time(Now())&amp;gt;'0:00:00' and &lt;/SPAN&gt;$(VLastModifiedDate)=$(vActualDate)) or (Time(Now())&amp;gt;'12:00:00' and &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;$(VLastModifiedDate)=$(=date(vActualDate-1))&lt;/SPAN&gt;)&amp;nbsp; Then&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;//Full load happens below&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load * from Fulltable&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ELSE&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;// QVD loads happen below&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load * from QVDtable&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;End if&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Regards&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Pratyush&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2017 07:32:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/full-load-only-if-the-file-is-changed/m-p/1214641#M853037</guid>
      <dc:creator>prat1507</dc:creator>
      <dc:date>2017-02-17T07:32:21Z</dc:date>
    </item>
    <item>
      <title>Re: full load only if the file is changed..</title>
      <link>https://community.qlik.com/t5/QlikView/full-load-only-if-the-file-is-changed/m-p/1214642#M853038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;instead of comparing with actual today() date can I suggest you create a QVD to store the modified time in a separate one record qvd ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)your scheduled reload occurs at 12 am&amp;nbsp; \&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 10pt;"&gt;after all load is complete create a qvd as below&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FileModifiedTime:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Load&amp;nbsp; Date(filetime()) as ModifiedDate&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Autogenerate(1);&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Store &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;FileModifiedTime&lt;/SPAN&gt; into &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;FileModifiedTime&lt;/SPAN&gt;.QVD&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;2) You scheduled load is triggered at 12 pm&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;FileModifiedTime&lt;/SPAN&gt;:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Load&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ModifiedDate&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;FileModifiedTime&lt;/SPAN&gt;.QVD&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;if(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Date(filetime()) &lt;/SPAN&gt;&amp;gt; peek( '&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;FileModifiedTime&lt;/SPAN&gt;',0,'&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;ModifiedDate&lt;/SPAN&gt;')&amp;nbsp; ) Then Reload Occurs else Exit Script&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="text-decoration: underline;"&gt;We are just checking if the last modified time is less than current modified time&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Makes Sense??&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Cheers&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;V&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2017 09:02:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/full-load-only-if-the-file-is-changed/m-p/1214642#M853038</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2017-02-17T09:02:49Z</dc:date>
    </item>
    <item>
      <title>Re: full load only if the file is changed..</title>
      <link>https://community.qlik.com/t5/QlikView/full-load-only-if-the-file-is-changed/m-p/1214643#M853039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Sasi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it throwed me the following error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;following is from document log&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;18-02-17 7:19:58 AM: 1002&amp;nbsp;&amp;nbsp;&amp;nbsp; Let vActualDate =Today()&lt;/P&gt;&lt;P&gt;18-02-17 7:19:58 AM: 1004&amp;nbsp;&amp;nbsp;&amp;nbsp; Let VLastModifiedDate = peek ( 'ModifiedDate', 0 , ' tmp ')&lt;/P&gt;&lt;P&gt;18-02-17 7:19:58 AM: 1007&amp;nbsp;&amp;nbsp;&amp;nbsp; If (18-02-17=18-02-17)&amp;nbsp; OR&lt;/P&gt;&lt;P&gt;18-02-17 7:19:58 AM:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Error: Script line error: &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Feb 2017 13:23:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/full-load-only-if-the-file-is-changed/m-p/1214643#M853039</guid>
      <dc:creator>gauthamchilled</dc:creator>
      <dc:date>2017-02-18T13:23:14Z</dc:date>
    </item>
    <item>
      <title>Re: full load only if the file is changed..</title>
      <link>https://community.qlik.com/t5/QlikView/full-load-only-if-the-file-is-changed/m-p/1214644#M853040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This probably isn't the cause of your Script Line Error but you should put all $-sign expansions of date variables between single quotes. Or QlikView will treat them as subtractions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you post the entire IF statement that starts on line 1007?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Feb 2017 14:05:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/full-load-only-if-the-file-is-changed/m-p/1214644#M853040</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2017-02-18T14:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: full load only if the file is changed..</title>
      <link>https://community.qlik.com/t5/QlikView/full-load-only-if-the-file-is-changed/m-p/1214645#M853041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Scrip statment:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let vActualDate =Today();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let VLastModifiedDate = peek ( 'ModifiedDate', 0 , ' tmp ');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If ($(VLastModifiedDate)=$(vActualDate)) // OR&lt;/P&gt;&lt;P&gt;If(($(VLastModifiedDate)&amp;gt;=Timestamp(date($(vActualDate) -1)+12/24)) and $(VLastModifiedDate)&amp;lt;=$(vActualDate)) Then&lt;/P&gt;&lt;P&gt;.......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;18-02-17 8:18:13 AM: 1002&amp;nbsp;&amp;nbsp;&amp;nbsp; Let vActualDate =Today()&lt;/P&gt;&lt;P&gt;18-02-17 8:18:13 AM: 1004&amp;nbsp;&amp;nbsp;&amp;nbsp; Let VLastModifiedDate = peek ( 'ModifiedDate', 0 , ' tmp ')&lt;/P&gt;&lt;P&gt;18-02-17 8:18:13 AM: 1007&amp;nbsp;&amp;nbsp;&amp;nbsp; If (18-02-17=18-02-17) &lt;/P&gt;&lt;P&gt;18-02-17 8:18:13 AM:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Error: Script line error: &lt;/P&gt;&lt;P&gt;18-02-17 8:18:22 AM: 1008&amp;nbsp;&amp;nbsp;&amp;nbsp; If((18-02-17&amp;gt;=Timestamp(date(18-02-17 -1)+12/24)) and 18-02-17&amp;lt;=18-02-17) Then&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Feb 2017 14:20:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/full-load-only-if-the-file-is-changed/m-p/1214645#M853041</guid>
      <dc:creator>gauthamchilled</dc:creator>
      <dc:date>2017-02-18T14:20:29Z</dc:date>
    </item>
    <item>
      <title>Re: full load only if the file is changed..</title>
      <link>https://community.qlik.com/t5/QlikView/full-load-only-if-the-file-is-changed/m-p/1214646#M853042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The IF control statement syntax is like: &lt;SPAN style="font-family: 'courier new', courier;"&gt;IF &lt;EM&gt;condition&lt;/EM&gt; &lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;THEN&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;EM&gt;stmt(s)&lt;/EM&gt;[ELSE &lt;EM&gt;stmt(s)&lt;/EM&gt; ] END IF&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you put the OR operator in comments and add a new IF in front of the next line, the first IF is missing a THEN keyword. That's why you get the "Syntax line error".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Feb 2017 17:20:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/full-load-only-if-the-file-is-changed/m-p/1214646#M853042</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2017-02-18T17:20:24Z</dc:date>
    </item>
    <item>
      <title>Re: full load only if the file is changed..</title>
      <link>https://community.qlik.com/t5/QlikView/full-load-only-if-the-file-is-changed/m-p/1214647#M853043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also make sure that if you split one IF in two, to add another END IF somewhere at the end of the code block. Otherwise you'll get more syntax errors because of unterminated IF statements.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Feb 2017 17:24:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/full-load-only-if-the-file-is-changed/m-p/1214647#M853043</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2017-02-18T17:24:50Z</dc:date>
    </item>
    <item>
      <title>Re: full load only if the file is changed..</title>
      <link>https://community.qlik.com/t5/QlikView/full-load-only-if-the-file-is-changed/m-p/1214648#M853044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vineeth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please explain little more clearer about the 1st and 2nd load statement. Both statement table name is same???&lt;/P&gt;&lt;P&gt;Do I need to use a load conditon for both the statments?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Mar 2017 05:50:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/full-load-only-if-the-file-is-changed/m-p/1214648#M853044</guid>
      <dc:creator>gauthamchilled</dc:creator>
      <dc:date>2017-03-13T05:50:07Z</dc:date>
    </item>
  </channel>
</rss>

