<?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 Run part of the code with variable control in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Run-part-of-the-code-with-variable-control/m-p/796930#M1021560</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a dimensions and facts.&lt;BR /&gt;I don't want to execute the dim's part (create qvd for each dim) every interval, only every 3 intervals.&lt;BR /&gt;so my idea was to create a counter variable (if variable &amp;gt;3 run the dim's part).&lt;BR /&gt;any advise how to do that?&lt;/P&gt;&lt;P&gt;is it possible to pass variable from management console?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Mar 2015 09:31:48 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-03-26T09:31:48Z</dc:date>
    <item>
      <title>Run part of the code with variable control</title>
      <link>https://community.qlik.com/t5/QlikView/Run-part-of-the-code-with-variable-control/m-p/796930#M1021560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a dimensions and facts.&lt;BR /&gt;I don't want to execute the dim's part (create qvd for each dim) every interval, only every 3 intervals.&lt;BR /&gt;so my idea was to create a counter variable (if variable &amp;gt;3 run the dim's part).&lt;BR /&gt;any advise how to do that?&lt;/P&gt;&lt;P&gt;is it possible to pass variable from management console?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Mar 2015 09:31:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Run-part-of-the-code-with-variable-control/m-p/796930#M1021560</guid>
      <dc:creator />
      <dc:date>2015-03-26T09:31:48Z</dc:date>
    </item>
    <item>
      <title>Re: Run part of the code with variable control</title>
      <link>https://community.qlik.com/t5/QlikView/Run-part-of-the-code-with-variable-control/m-p/796931#M1021561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could use something like this directly or outsourced as include-variable:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if $(vIntervalCounter) &amp;lt; 3 then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; let vIntervalCounter = $(vIntervalCounter) + 1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; exit script;&lt;/P&gt;&lt;P&gt;else&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; let vIntervalCounter = 0;&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;// Your Load-Statements&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Mar 2015 11:56:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Run-part-of-the-code-with-variable-control/m-p/796931#M1021561</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-03-26T11:56:00Z</dc:date>
    </item>
    <item>
      <title>Re: Run part of the code with variable control</title>
      <link>https://community.qlik.com/t5/QlikView/Run-part-of-the-code-with-variable-control/m-p/796932#M1021562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks,&lt;BR /&gt;what is the best source to use for save the variable?&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 12px; background-color: #f6f6f6; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px;"&gt;is it possible to pass variable from management console?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Mar 2015 16:02:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Run-part-of-the-code-with-variable-control/m-p/796932#M1021562</guid>
      <dc:creator />
      <dc:date>2015-03-26T16:02:48Z</dc:date>
    </item>
    <item>
      <title>Re: Run part of the code with variable control</title>
      <link>https://community.qlik.com/t5/QlikView/Run-part-of-the-code-with-variable-control/m-p/796933#M1021563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure but I believe you couldn't pass such variables from the qmc - maybe the publisher had here more options. But you could generate such variable externally and store it in a textfile which could be load as include-variable and then use a logic similar to the above mentioned.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Mar 2015 16:52:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Run-part-of-the-code-with-variable-control/m-p/796933#M1021563</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-03-26T16:52:12Z</dc:date>
    </item>
  </channel>
</rss>

