<?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 Date limits in Calendar object in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Date-limits-in-Calendar-object/m-p/216815#M70090</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;thank you for this precize description. I think you want the calender object showing the datesmap exactly from min(date) to max(date). But the calender object shows always complete months. And of course including the complete first and last month and i.e. with days that are greater then your max(date). So your users can select by mistake a date that does not fit into the given range.&lt;/P&gt;&lt;P&gt;I am afraid that there is no solution within the calender object At least I do not know any. I am using currently 9SR6. Perhaps V10 or even threads like http://community.qlik.com/forums/t/16480.aspx or examples like &lt;A&gt;http://community.qlik.com/media/p/63238.aspx&lt;/A&gt; can support you with getting new ideas.&lt;/P&gt;&lt;P&gt;Sorry,&lt;/P&gt;&lt;P&gt;Roland&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 09 Dec 2010 10:51:50 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-12-09T10:51:50Z</dc:date>
    <item>
      <title>Date limits in Calendar object</title>
      <link>https://community.qlik.com/t5/QlikView/Date-limits-in-Calendar-object/m-p/216810#M70085</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;In my Calendar object the upper limit is Oct 15. But it is showing the dates till Oct 31. Is it possible to remove or greyed out the dates after Oct 15?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Dec 2010 06:56:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-limits-in-Calendar-object/m-p/216810#M70085</guid>
      <dc:creator />
      <dc:date>2010-12-08T06:56:24Z</dc:date>
    </item>
    <item>
      <title>Date limits in Calendar object</title>
      <link>https://community.qlik.com/t5/QlikView/Date-limits-in-Calendar-object/m-p/216811#M70086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am having a similar issue... hoping for a resolution. I won't repost, I'll wait to see if somone answers here.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Dec 2010 14:21:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-limits-in-Calendar-object/m-p/216811#M70086</guid>
      <dc:creator />
      <dc:date>2010-12-08T14:21:29Z</dc:date>
    </item>
    <item>
      <title>Date limits in Calendar object</title>
      <link>https://community.qlik.com/t5/QlikView/Date-limits-in-Calendar-object/m-p/216812#M70087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;just to clearify your enviroment: Do you have a calender-table linked to another table (normally the facts-table). And max(date) of your calender table is Oct 15 of 2010. And data in the other table was loaded untill end of Oct?&lt;/P&gt;&lt;P&gt;Regards, Roland&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Dec 2010 15:42:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-limits-in-Calendar-object/m-p/216812#M70087</guid>
      <dc:creator />
      <dc:date>2010-12-08T15:42:58Z</dc:date>
    </item>
    <item>
      <title>Date limits in Calendar object</title>
      <link>https://community.qlik.com/t5/QlikView/Date-limits-in-Calendar-object/m-p/216813#M70088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can try create a calendar with base a fact table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;LET vToday = Today();&lt;BR /&gt;Calendar:&lt;BR /&gt;LOAD DISTINCT&lt;BR /&gt; *,&lt;BR /&gt; 'Q' &amp;amp; Ceil(FiscalPeriod/3) AS FiscalQuarter,&lt;BR /&gt; 'Q' &amp;amp; Ceil(Month/3) AS Quarter,&lt;BR /&gt; Mod(Week(DateFake)-1,52)+1 AS FiscalWeek,&lt;BR /&gt; Date(MonthStart(Date), 'MMM-YY') AS MonthYear,&lt;BR /&gt; QuarterStart(Date) AS QuarterStart,&lt;BR /&gt; If(NumDate &amp;lt;= Num('$(vToday)'), 1, 0) AS FlgReal&lt;BR /&gt;WHERE FiscalPeriod &amp;gt;= 1;&lt;BR /&gt;LOAD Distinct&lt;BR /&gt; Num(OrderDate) AS %Date,&lt;BR /&gt; Num(OrderDate) AS NumDate,&lt;BR /&gt; OrderDate AS Date,&lt;BR /&gt; AddMonths(OrderDate,+6) AS DateFake,&lt;BR /&gt; TMPFiscalYear AS FiscalYear,&lt;BR /&gt; TMPMonthOrder AS FiscalPeriod,&lt;BR /&gt; Week(OrderDate) AS Week,&lt;BR /&gt; Day(OrderDate) AS Day,&lt;BR /&gt; Month(OrderDate) AS Month,&lt;BR /&gt; Year(OrderDate) AS Year&lt;BR /&gt;RESIDENT Sales&lt;BR /&gt;ORDER BY TMPFiscalYear, TMPMonthOrder;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;A href="http://community.qlik.com/cfs-file.ashx/__key/CommunityServer.Discussions.Components.Files/11/2514.PrintScreen_5F00_2010_2D00_12_2D00_09-16-27-45.gif"&gt;&lt;IMG alt="" border="0" src="http://community.qlik.com/resized-image.ashx/__size/550x0/__key/CommunityServer.Discussions.Components.Files/11/2514.PrintScreen_5F00_2010_2D00_12_2D00_09-16-27-45.gif" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://community.qlik.com/cfs-file.ashx/__key/CommunityServer.Discussions.Components.Files/11/8877.PrintScreen_5F00_2010_2D00_12_2D00_09-16-30-17.gif"&gt;&lt;IMG alt="" border="0" src="http://community.qlik.com/resized-image.ashx/__size/550x0/__key/CommunityServer.Discussions.Components.Files/11/8877.PrintScreen_5F00_2010_2D00_12_2D00_09-16-30-17.gif" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Dec 2010 16:36:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-limits-in-Calendar-object/m-p/216813#M70088</guid>
      <dc:creator />
      <dc:date>2010-12-08T16:36:02Z</dc:date>
    </item>
    <item>
      <title>Date limits in Calendar object</title>
      <link>https://community.qlik.com/t5/QlikView/Date-limits-in-Calendar-object/m-p/216814#M70089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Max and Min date are taken from the fact table and those dates are used to set the date range in the calendar object. User selection will be taken into a variable. And the calculation will be performed using that variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Dec 2010 06:46:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-limits-in-Calendar-object/m-p/216814#M70089</guid>
      <dc:creator />
      <dc:date>2010-12-09T06:46:41Z</dc:date>
    </item>
    <item>
      <title>Date limits in Calendar object</title>
      <link>https://community.qlik.com/t5/QlikView/Date-limits-in-Calendar-object/m-p/216815#M70090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;thank you for this precize description. I think you want the calender object showing the datesmap exactly from min(date) to max(date). But the calender object shows always complete months. And of course including the complete first and last month and i.e. with days that are greater then your max(date). So your users can select by mistake a date that does not fit into the given range.&lt;/P&gt;&lt;P&gt;I am afraid that there is no solution within the calender object At least I do not know any. I am using currently 9SR6. Perhaps V10 or even threads like http://community.qlik.com/forums/t/16480.aspx or examples like &lt;A&gt;http://community.qlik.com/media/p/63238.aspx&lt;/A&gt; can support you with getting new ideas.&lt;/P&gt;&lt;P&gt;Sorry,&lt;/P&gt;&lt;P&gt;Roland&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Dec 2010 10:51:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-limits-in-Calendar-object/m-p/216815#M70090</guid>
      <dc:creator />
      <dc:date>2010-12-09T10:51:50Z</dc:date>
    </item>
    <item>
      <title>Date limits in Calendar object</title>
      <link>https://community.qlik.com/t5/QlikView/Date-limits-in-Calendar-object/m-p/216816#M70091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Same in QV 10.&lt;BR /&gt;I have to add that if not for this thread, I'd never noticed this issue because I always create calendars for the whole years. In this case the max date would be Dec 31, 2010.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Dec 2010 16:52:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-limits-in-Calendar-object/m-p/216816#M70091</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-12-09T16:52:32Z</dc:date>
    </item>
  </channel>
</rss>

