<?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: Conditionally schedule task at QMC in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Conditionally-schedule-task-at-QMC/m-p/840277#M1330911</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This question was published 3 years before and this was the question for QlikView server only.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 10 Jun 2018 12:23:05 GMT</pubDate>
    <dc:creator>agni_gold</dc:creator>
    <dc:date>2018-06-10T12:23:05Z</dc:date>
    <item>
      <title>Conditionally schedule task at QMC</title>
      <link>https://community.qlik.com/t5/QlikView/Conditionally-schedule-task-at-QMC/m-p/840270#M1330901</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 have a situation , i want to schedule a task in QMC for every 3rd day of Month start , means id i got Saturday oe Sunday in my month start then it automatically change the date and start on start 3rd day .&lt;/P&gt;&lt;P&gt;Can it be possible , i don't think so , if any body have any solution please tell me .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditionally-schedule-task-at-QMC/m-p/840270#M1330901</guid>
      <dc:creator>agni_gold</dc:creator>
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Conditionally schedule task at QMC</title>
      <link>https://community.qlik.com/t5/QlikView/Conditionally-schedule-task-at-QMC/m-p/840271#M1330902</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 don't think there is an option.&lt;/P&gt;&lt;P&gt;But yes &lt;A href="https://community.qlik.com/qlik-users/3147"&gt;bbt&lt;/A&gt; can shed some light on this if there is any such possibility.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Jun 2015 08:16:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditionally-schedule-task-at-QMC/m-p/840271#M1330902</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2015-06-07T08:16:18Z</dc:date>
    </item>
    <item>
      <title>Re: Conditionally schedule task at QMC</title>
      <link>https://community.qlik.com/t5/QlikView/Conditionally-schedule-task-at-QMC/m-p/840272#M1330903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think it won't be possible to trigger such complex/conditional task directly within the qmc. But you could put a weekday-check at the beginning from the qvw-load and if condition don't match you finished the load with an "exit script;" statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could make such check also externally and start then this task per windows task or per per execute statement from another qvw which could be triggered from the qmc again. Here a simple example for a vbs-routine to return the current weekday:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dim File, Weekday&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Path = "D:\"&lt;/P&gt;&lt;P&gt;Weekday = left(formatdatetime(now(), 1), instr(formatdatetime(now(), 1), ",") - 1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set fso = CreateObject("Scripting.FileSystemObject")&lt;/P&gt;&lt;P&gt;set File = fso.OpenTextFile("D:\TaskWeekday.txt", 2, true)&lt;/P&gt;&lt;P&gt;File.Write Weekday&lt;/P&gt;&lt;P&gt;File.close&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Jun 2015 09:04:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditionally-schedule-task-at-QMC/m-p/840272#M1330903</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-06-07T09:04:52Z</dc:date>
    </item>
    <item>
      <title>Re: Conditionally schedule task at QMC</title>
      <link>https://community.qlik.com/t5/QlikView/Conditionally-schedule-task-at-QMC/m-p/840273#M1330904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;I think it won't be possible to trigger such complex/conditional task directly within the qmc. But you could put a weekday-check at the beginning from the qvw-load and if condition don't match you finished the load with an "exit script;" statement.&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and if you have a dependent task, raise an error (load a non existent qvd, or something else) after the check so the dependent task doesn't start. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Jun 2015 09:51:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditionally-schedule-task-at-QMC/m-p/840273#M1330904</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2015-06-07T09:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: Conditionally schedule task at QMC</title>
      <link>https://community.qlik.com/t5/QlikView/Conditionally-schedule-task-at-QMC/m-p/840274#M1330905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Of course, it's a possibility.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Jun 2015 09:58:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditionally-schedule-task-at-QMC/m-p/840274#M1330905</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-06-07T09:58:54Z</dc:date>
    </item>
    <item>
      <title>Re: Conditionally schedule task at QMC</title>
      <link>https://community.qlik.com/t5/QlikView/Conditionally-schedule-task-at-QMC/m-p/840275#M1330907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Agnivesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;did you solve this issue how to schedule the task in Qlik sense QMC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2018 08:59:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditionally-schedule-task-at-QMC/m-p/840275#M1330907</guid>
      <dc:creator>nareshthavidishetty</dc:creator>
      <dc:date>2018-05-18T08:59:09Z</dc:date>
    </item>
    <item>
      <title>Re: Conditionally schedule task at QMC</title>
      <link>https://community.qlik.com/t5/QlikView/Conditionally-schedule-task-at-QMC/m-p/840276#M1330909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Agnivesh's issue was likely for QlikView Server/Publisher, not Qlik Sense. Would suggest that you make a post on the Qlik Sense forums.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2018 20:02:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditionally-schedule-task-at-QMC/m-p/840276#M1330909</guid>
      <dc:creator>Chip_Matejowsky</dc:creator>
      <dc:date>2018-05-18T20:02:31Z</dc:date>
    </item>
    <item>
      <title>Re: Conditionally schedule task at QMC</title>
      <link>https://community.qlik.com/t5/QlikView/Conditionally-schedule-task-at-QMC/m-p/840277#M1330911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This question was published 3 years before and this was the question for QlikView server only.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Jun 2018 12:23:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditionally-schedule-task-at-QMC/m-p/840277#M1330911</guid>
      <dc:creator>agni_gold</dc:creator>
      <dc:date>2018-06-10T12:23:05Z</dc:date>
    </item>
    <item>
      <title>Re: Conditionally schedule task at QMC</title>
      <link>https://community.qlik.com/t5/QlikView/Conditionally-schedule-task-at-QMC/m-p/840278#M1330913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Agnivesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can create a Qlikview document as attached to find working day.&lt;/P&gt;&lt;P&gt;and have a if else loop to check working day.&lt;/P&gt;&lt;P&gt;if working day is 3 then load some irrelevant fields which will fail the document.&lt;/P&gt;&lt;P&gt;and based on job failure trigger the required task.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Jun 2018 13:44:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditionally-schedule-task-at-QMC/m-p/840278#M1330913</guid>
      <dc:creator>passionate</dc:creator>
      <dc:date>2018-06-10T13:44:13Z</dc:date>
    </item>
    <item>
      <title>Re: Conditionally schedule task at QMC</title>
      <link>https://community.qlik.com/t5/QlikView/Conditionally-schedule-task-at-QMC/m-p/840279#M1330915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your help , but its toooooo late&amp;nbsp; &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/silly.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Jun 2018 20:55:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditionally-schedule-task-at-QMC/m-p/840279#M1330915</guid>
      <dc:creator>agni_gold</dc:creator>
      <dc:date>2018-06-10T20:55:28Z</dc:date>
    </item>
    <item>
      <title>Re: Conditionally schedule task at QMC</title>
      <link>https://community.qlik.com/t5/QlikView/Conditionally-schedule-task-at-QMC/m-p/840280#M1330917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What was your solution? How did you convince your users...:)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jun 2018 15:04:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditionally-schedule-task-at-QMC/m-p/840280#M1330917</guid>
      <dc:creator>passionate</dc:creator>
      <dc:date>2018-06-20T15:04:52Z</dc:date>
    </item>
    <item>
      <title>Re: Conditionally schedule task at QMC</title>
      <link>https://community.qlik.com/t5/QlikView/Conditionally-schedule-task-at-QMC/m-p/840281#M1330919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I created one more QlikView app, and doing forcefully failed when the working day is not 3. my file can only refresh successfully when the workday is 3. and my all task dependent to the new one.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Jun 2018 07:19:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditionally-schedule-task-at-QMC/m-p/840281#M1330919</guid>
      <dc:creator>agni_gold</dc:creator>
      <dc:date>2018-06-30T07:19:19Z</dc:date>
    </item>
  </channel>
</rss>

