<?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: Trouble with an IF THEN clause in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762750#M661590</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joe,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes, that sounds good. The strange thing is, I tested it locally on Friday - and it worked fine. Then I tried starting the script through QMC - so it was run on the server - and that worked fine, too ...&lt;/P&gt;&lt;P&gt;It was the same the week before as far as I can remember.&lt;/P&gt;&lt;P&gt;So it cannot be that the server settings are generally different. Also, this app is run at 6am, so there can be no confusion about the day, either ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The flipside of it also works - the code should not be run on any other day, and it isn't ...&lt;/P&gt;&lt;P&gt;Strangely, though, the closing ENDIF is not logged - the line with the IF THEN clause is in the log and from the next lines I can tell that the specific code for Fridays has been skipped. The ENDIF is not in the log, though ...&lt;/P&gt;&lt;P&gt;That is not normal, is it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DataNibbler&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S.: I use Today(0) for the weekday_check - so it should be updated at reload of the script, no? And, as I said, the app is reloaded at 6am.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 Feb 2015 08:37:38 GMT</pubDate>
    <dc:creator>datanibbler</dc:creator>
    <dc:date>2015-02-23T08:37:38Z</dc:date>
    <item>
      <title>Trouble with an IF THEN clause</title>
      <link>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762743#M661583</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'm still having trouble with an app I have to check the presence of files (and their number and name) in a certain directory - that's just to make sure the correct nr. of files with the correct names is there because some other apps depend on that, and to send email_alerts to the responsibles if that is not the case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One part of the code in this app is conditionalized to only run on Fridays - it checks a specific subdirectory where the files for the next week should always be stored, and it isn't reasonable to expect those files to be there before Friday. So I want the check to only run on a Friday.&lt;/P&gt;&lt;P&gt;What happened today - and the two last weeks - was that the code did not run on Fridays. When I go through it in the Debugger, it jumps straight to the ENDIF (at the very end of the tab), so the code inbetween is seemingly not being executed.&lt;/P&gt;&lt;P&gt;I can post the code here (I'll attach it) though it won't work for you, there is a number of filepath_variables involved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody help me with that?&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DataNibbler&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Feb 2015 13:41:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762743#M661583</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-02-20T13:41:15Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with an IF THEN clause</title>
      <link>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762744#M661584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi DataNibbler,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;weekday returned a numeric value - therefore it should be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF Weekday(Today(0)) = 4 THEN&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Feb 2015 13:48:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762744#M661584</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-02-20T13:48:30Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with an IF THEN clause</title>
      <link>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762745#M661585</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;that crossed my mind too - but I tested it both on the GUI (there the Weekday() fct did return 'Fri') and also in the script - I tested in a small test_app with just some arbitrary load in that same IF THEN clause - and that worked ... Now I'll try putting it in a qvs file for an INCLUDE - maybe there is too much happening inside that clause (there is a loop and some variables and whatnot)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DataNibbler&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Feb 2015 13:51:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762745#M661585</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-02-20T13:51:15Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with an IF THEN clause</title>
      <link>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762746#M661586</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi DataNibbler,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this could be - I think it will be depend on the settings from:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET DayNames='Mo;Di;Mi;Do;Fr;Sa;So';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Feb 2015 13:54:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762746#M661586</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-02-20T13:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with an IF THEN clause</title>
      <link>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762747#M661587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yep, sure it depends on that - but the settings are just so (Mon;Tue;Wed;Thu;Fri;Sat;Sun)&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DataNibbler&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Feb 2015 13:56:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762747#M661587</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-02-20T13:56:21Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with an IF THEN clause</title>
      <link>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762748#M661588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmm ... it seems to work. The INCLUDE is seemingly being executed.&lt;/P&gt;&lt;P&gt;Let's see what things look like next Friday ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Feb 2015 13:58:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762748#M661588</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-02-20T13:58:49Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with an IF THEN clause</title>
      <link>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762749#M661589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If it is working fine for you locally but failing when run from the server, could it be an issue with server time settings?&lt;/P&gt;&lt;P&gt;When it ran on the server, it may not have been Friday for it and correctly skipped the code, maybe check the run on Thur/Sat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Feb 2015 14:07:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762749#M661589</guid>
      <dc:creator />
      <dc:date>2015-02-20T14:07:43Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with an IF THEN clause</title>
      <link>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762750#M661590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joe,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes, that sounds good. The strange thing is, I tested it locally on Friday - and it worked fine. Then I tried starting the script through QMC - so it was run on the server - and that worked fine, too ...&lt;/P&gt;&lt;P&gt;It was the same the week before as far as I can remember.&lt;/P&gt;&lt;P&gt;So it cannot be that the server settings are generally different. Also, this app is run at 6am, so there can be no confusion about the day, either ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The flipside of it also works - the code should not be run on any other day, and it isn't ...&lt;/P&gt;&lt;P&gt;Strangely, though, the closing ENDIF is not logged - the line with the IF THEN clause is in the log and from the next lines I can tell that the specific code for Fridays has been skipped. The ENDIF is not in the log, though ...&lt;/P&gt;&lt;P&gt;That is not normal, is it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DataNibbler&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S.: I use Today(0) for the weekday_check - so it should be updated at reload of the script, no? And, as I said, the app is reloaded at 6am.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2015 08:37:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762750#M661590</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-02-23T08:37:38Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with an IF THEN clause</title>
      <link>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762751#M661591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi DataNibbler,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;put several trace-statements in the script - inside and outside from if-loop - to check what your variables return and which statements are executed and which not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2015 09:50:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762751#M661591</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-02-23T09:50:08Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with an IF THEN clause</title>
      <link>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762752#M661592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Data,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that does sound quite strange.&lt;/P&gt;&lt;P&gt;QV version, is what you are running locally the same as the server?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The job starts at 6am? or it reaches that section of code at 6am? And that's 6am according to QMC not your local machine yea?&lt;/P&gt;&lt;P&gt;Today(0) means date at the script start time I believe, if the job starts before midnight and that code isn't reached until 6am, I think that might cause an issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like Marcus says though, trace the whole thing and see what is/isn't showing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Joe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2015 14:10:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762752#M661592</guid>
      <dc:creator />
      <dc:date>2015-02-23T14:10:37Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with an IF THEN clause</title>
      <link>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762753#M661593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joe and Marcus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the other issue is solved, so here I go again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@ Joe&lt;/P&gt;&lt;P&gt;Today(0) would of course return wrong results if the code started before midnight, but the script starts at 6am - I have none running for 6hrs, that would be quite strange for QlikView is really fast. i have one running for 20min, but that is the longest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have also had the thought of introducing TRACE statements - and I now have a variable automatically highlighting the end of one script_tab and the beginning of the next, so I can also use that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DataNibbler&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2015 14:55:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762753#M661593</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-02-23T14:55:36Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with an IF THEN clause</title>
      <link>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762754#M661594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Okay - those TRACE commands clearly show me that the code for Fridays is indeed skipped.&lt;/P&gt;&lt;P&gt;I will try changing that to Monday to see if it runs then.&lt;/P&gt;&lt;P&gt;The alert on the GUI is set to fire only on Fridays separately - otherwise it would fire every day because when the code is not run, the field that alert is set to check doesn't exist.&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DataNibbler&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S.: Now I've changed it to Monday and as expected, the code is then run, both locally and on the server. I've also inserted a TRACE statement to show me what the weekday_check returned.&lt;/P&gt;&lt;P&gt;I'll change it back now and wait for Friday ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2015 15:15:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762754#M661594</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-02-23T15:15:57Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with an IF THEN clause</title>
      <link>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762755#M661595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Change it to Tues so we can see what the trace statements show during a proper over night run sooner maybe? Saves waiting until Fri.&lt;/P&gt;&lt;P&gt;If it just worked fine on the server and locally today but then overnight during the 6am load doesn't work, that does point more to some timing issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2015 16:10:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762755#M661595</guid>
      <dc:creator />
      <dc:date>2015-02-23T16:10:58Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with an IF THEN clause</title>
      <link>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762756#M661596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joe,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the same thing just happened again - the code was not executed this morning at 6am and the alarm fired because&lt;/P&gt;&lt;P&gt;the field it was set to look for didn't exist.&lt;/P&gt;&lt;P&gt;I just have an idea. Maybe someone can confirm that:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=&amp;gt; In the log, the TRACE command I built in just before that (it also uses &amp;gt;&amp;gt; Weekday(Today(0)) &amp;lt;&amp;lt; )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; read "Thu"&lt;/P&gt;&lt;P&gt;=&amp;gt; &lt;STRONG&gt;Could it be, though the script doesn't say so, that Today(0), like Now(0) does not react right during the&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; script_reloading process, but only the next time round?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =&amp;gt; In that case, the code, when reloaded at 6am on Friday, would use the result of Today() from the last&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; script_run, which was on Thursday, and that particular block of code would not get executed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;=&amp;gt; The alert on the GUI instead uses &amp;gt;&amp;gt; Weekday(Today()) &amp;lt;&amp;lt; so that is evaluated immediately and of course&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; it returns Friday and the alert fires correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So how could I fix this? Could I use a different parameter in the script to make that function Today() in the script evaluate immediately?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DataNibbler&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S.: Unfortunately, that is very hard to check for the day will remain the same all day &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt; Could I try with a derivative of Now(0)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Feb 2015 08:16:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762756#M661596</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-02-27T08:16:24Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with an IF THEN clause</title>
      <link>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762757#M661599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is it!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just replaced that &amp;gt;&amp;gt; Weekday(Today(0)) &amp;lt;&amp;lt; with NOW(0) - and it read 06:00:13 - though right now it is 09:20 &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt; So the parameter 0 does return the day of the last script_reload, not the current one.&lt;/P&gt;&lt;P&gt;I will try with the parameter 1 - for immediate evaluation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Feb 2015 08:23:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762757#M661599</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-02-27T08:23:50Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with an IF THEN clause</title>
      <link>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762758#M661603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;that's great, good one to figure out &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Feb 2015 08:57:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trouble-with-an-IF-THEN-clause/m-p/762758#M661603</guid>
      <dc:creator />
      <dc:date>2015-02-27T08:57:22Z</dc:date>
    </item>
  </channel>
</rss>

