<?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 Calendar Object Based on Fiscal Calendar in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Calendar-Object-Based-on-Fiscal-Calendar/m-p/147388#M25820</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="jive_text_macro jive_macro_quote" jivemacro="quote"&gt;&lt;BR /&gt;KarenSmith wrote:Thanks for your assistance. This code worked great. It created calendar up to current date. One more question- How would create calendar days greater than current date.&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Just change this part of the code:&lt;/P&gt;&lt;P&gt;AUTOGENERATE today()-date#(20061231,'YYYYMMDD')&lt;/P&gt;&lt;P&gt;The AUTOGENERATE just generates a certain number of occurrences. Here, I calculate the number of occurrences such that it will generate everything between January 1, 2007 and today(). If you want a calendar through the end of the current year, for instance, you could do this:&lt;/P&gt;&lt;P&gt;AUTOGENERATE yearend(today())-date#(20061231,'YYYYMMDD')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Jun 2009 01:08:03 GMT</pubDate>
    <dc:creator>johnw</dc:creator>
    <dc:date>2009-06-24T01:08:03Z</dc:date>
    <item>
      <title>Calendar Object Based on Fiscal Calendar</title>
      <link>https://community.qlik.com/t5/QlikView/Calendar-Object-Based-on-Fiscal-Calendar/m-p/147385#M25817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do you make a calendar object based on Fiscal Calendar(April- March)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2009 19:13:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calendar-Object-Based-on-Fiscal-Calendar/m-p/147385#M25817</guid>
      <dc:creator>karensmith</dc:creator>
      <dc:date>2009-06-22T19:13:40Z</dc:date>
    </item>
    <item>
      <title>Calendar Object Based on Fiscal Calendar</title>
      <link>https://community.qlik.com/t5/QlikView/Calendar-Object-Based-on-Fiscal-Calendar/m-p/147386#M25818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure quite what you're asking. When I make calendars, I'm just tying dates in to other "formats" of the date. For a calendar in that sense, something like this (untested):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;[Fiscal Calendar]:&lt;BR /&gt;LOAD date(date#(20061231,'YYYYMMDD')+recno(),'MM/DD/YY') as "Date"&lt;BR /&gt;AUTOGENERATE today()-date#(20061231,'YYYYMMDD')&lt;BR /&gt;;&lt;BR /&gt;LEFT JOIN ([Fiscal Calendar])&lt;BR /&gt;LOAD&lt;BR /&gt; "Date"&lt;BR /&gt;,date(monthstart(Date),'MMM YY') as "Month"&lt;BR /&gt;,date(yearstart(Date),'YYYY') as "Calendar Year"&lt;BR /&gt;,date(yearstart(Date,0,4),'YYYY') as "Fiscal Year"&lt;BR /&gt;RESIDENT [Fiscal Calendar])&lt;BR /&gt;;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2009 23:45:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calendar-Object-Based-on-Fiscal-Calendar/m-p/147386#M25818</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2009-06-22T23:45:52Z</dc:date>
    </item>
    <item>
      <title>Calendar Object Based on Fiscal Calendar</title>
      <link>https://community.qlik.com/t5/QlikView/Calendar-Object-Based-on-Fiscal-Calendar/m-p/147387#M25819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;John,&lt;/P&gt;&lt;P&gt;Thanks for your assistance. This code worked great. It created calendar up to current date. One more question- How would create calendar days greater than current date.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2009 00:31:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calendar-Object-Based-on-Fiscal-Calendar/m-p/147387#M25819</guid>
      <dc:creator>karensmith</dc:creator>
      <dc:date>2009-06-24T00:31:02Z</dc:date>
    </item>
    <item>
      <title>Calendar Object Based on Fiscal Calendar</title>
      <link>https://community.qlik.com/t5/QlikView/Calendar-Object-Based-on-Fiscal-Calendar/m-p/147388#M25820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="jive_text_macro jive_macro_quote" jivemacro="quote"&gt;&lt;BR /&gt;KarenSmith wrote:Thanks for your assistance. This code worked great. It created calendar up to current date. One more question- How would create calendar days greater than current date.&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Just change this part of the code:&lt;/P&gt;&lt;P&gt;AUTOGENERATE today()-date#(20061231,'YYYYMMDD')&lt;/P&gt;&lt;P&gt;The AUTOGENERATE just generates a certain number of occurrences. Here, I calculate the number of occurrences such that it will generate everything between January 1, 2007 and today(). If you want a calendar through the end of the current year, for instance, you could do this:&lt;/P&gt;&lt;P&gt;AUTOGENERATE yearend(today())-date#(20061231,'YYYYMMDD')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2009 01:08:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calendar-Object-Based-on-Fiscal-Calendar/m-p/147388#M25820</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2009-06-24T01:08:03Z</dc:date>
    </item>
  </channel>
</rss>

