<?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: Master calendar Error in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Master-calendar-Error/m-p/667138#M1078937</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And for your script that you use right now make some changes convert the input date values into the dates then it works fine see the load script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Date(Date#('01-01-2014','MM-DD-YYYY')&lt;/STRONG&gt; + IterNo()-1) AS Date&lt;/P&gt;&lt;P&gt;AutoGenerate 1&lt;/P&gt;&lt;P&gt;WHILE&amp;nbsp; &lt;STRONG&gt;Date#('01-01-2014','MM-DD-YYYY')&lt;/STRONG&gt; + IterNo()-1 &amp;lt;= &lt;STRONG&gt;Date#('07-13-2014','MM-DD-YYYY')&lt;/STRONG&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 13 Jul 2014 11:35:53 GMT</pubDate>
    <dc:creator>its_anandrjs</dc:creator>
    <dc:date>2014-07-13T11:35:53Z</dc:date>
    <item>
      <title>Master calendar Error</title>
      <link>https://community.qlik.com/t5/QlikView/Master-calendar-Error/m-p/667136#M1078935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Master calendar Error ...... could u please explain me the script error and if possible give me a possible script &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 13 Jul 2014 11:10:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-calendar-Error/m-p/667136#M1078935</guid>
      <dc:creator />
      <dc:date>2014-07-13T11:10:19Z</dc:date>
    </item>
    <item>
      <title>Re: Master calendar Error</title>
      <link>https://community.qlik.com/t5/QlikView/Master-calendar-Error/m-p/667137#M1078936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to load your script like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let varMin = Num(Date#('01-01-2014','MM-DD-YYYY'));&lt;/P&gt;&lt;P&gt;Let varMax = Num(Date#('07-13-2014','MM-DD-YYYY'));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;date($(varMin)+IterNo()-1) AS Date&lt;/P&gt;&lt;P&gt;AutoGenerate 1&lt;/P&gt;&lt;P&gt;WHILE $(varMin)+IterNo()-1&amp;lt;= $(varMax);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 13 Jul 2014 11:32:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-calendar-Error/m-p/667137#M1078936</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-07-13T11:32:10Z</dc:date>
    </item>
    <item>
      <title>Re: Master calendar Error</title>
      <link>https://community.qlik.com/t5/QlikView/Master-calendar-Error/m-p/667138#M1078937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And for your script that you use right now make some changes convert the input date values into the dates then it works fine see the load script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Date(Date#('01-01-2014','MM-DD-YYYY')&lt;/STRONG&gt; + IterNo()-1) AS Date&lt;/P&gt;&lt;P&gt;AutoGenerate 1&lt;/P&gt;&lt;P&gt;WHILE&amp;nbsp; &lt;STRONG&gt;Date#('01-01-2014','MM-DD-YYYY')&lt;/STRONG&gt; + IterNo()-1 &amp;lt;= &lt;STRONG&gt;Date#('07-13-2014','MM-DD-YYYY')&lt;/STRONG&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 13 Jul 2014 11:35:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-calendar-Error/m-p/667138#M1078937</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-07-13T11:35:53Z</dc:date>
    </item>
    <item>
      <title>Re: Master calendar Error</title>
      <link>https://community.qlik.com/t5/QlikView/Master-calendar-Error/m-p/667139#M1078938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And there is one more way of doing the same but with NUM function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Date( &lt;STRONG&gt;Num('01/01/2014')&lt;/STRONG&gt; + IterNo() - 1) AS Date&lt;/P&gt;&lt;P&gt;AutoGenerate 1&lt;/P&gt;&lt;P&gt;WHILE&amp;nbsp; &lt;STRONG&gt;Num('01/01/2014')&lt;/STRONG&gt; + IterNo() - 1 &amp;lt;= &lt;STRONG&gt;Num('07/13/2014')&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi Manoj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Without closing any thread do not open the new thread which is similar to the question until that completes just a suggestion for you look the below thread and close if got correct or helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/message/567554?et=watches.email.thread#567554" title="http://community.qlik.com/message/567554?et=watches.email.thread#567554"&gt;Master calendar question | Qlik Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 13 Jul 2014 11:57:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-calendar-Error/m-p/667139#M1078938</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-07-13T11:57:25Z</dc:date>
    </item>
  </channel>
</rss>

