<?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: 2 Calendars in a single dashboard ? Query in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/2-Calendars-in-a-single-dashboard-Query/m-p/915796#M469096</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You still only need a single master calendar . The calendar would use date as the key and include calendar month and calendar year as well as fiscal month/period and fiscal year in the same table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Jul 2015 11:23:24 GMT</pubDate>
    <dc:creator>jonathandienst</dc:creator>
    <dc:date>2015-07-27T11:23:24Z</dc:date>
    <item>
      <title>2 Calendars in a single dashboard ? Query</title>
      <link>https://community.qlik.com/t5/QlikView/2-Calendars-in-a-single-dashboard-Query/m-p/915795#M469095</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 am currently in the process of updating a tab in an exisiting dashboard. My issue with the process is that the current dashboard uses Standard calendar for all its tabs and the one I am updating requires the Fiscal calendar. How could I use both calendars in a dashboard. ? As this is my first dashboard, I am stuck with the basics. Any help would be useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jul 2015 10:19:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/2-Calendars-in-a-single-dashboard-Query/m-p/915795#M469095</guid>
      <dc:creator>snehamahaveer</dc:creator>
      <dc:date>2015-07-27T10:19:54Z</dc:date>
    </item>
    <item>
      <title>Re: 2 Calendars in a single dashboard ? Query</title>
      <link>https://community.qlik.com/t5/QlikView/2-Calendars-in-a-single-dashboard-Query/m-p/915796#M469096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You still only need a single master calendar . The calendar would use date as the key and include calendar month and calendar year as well as fiscal month/period and fiscal year in the same table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jul 2015 11:23:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/2-Calendars-in-a-single-dashboard-Query/m-p/915796#M469096</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-07-27T11:23:24Z</dc:date>
    </item>
    <item>
      <title>Re: 2 Calendars in a single dashboard ? Query</title>
      <link>https://community.qlik.com/t5/QlikView/2-Calendars-in-a-single-dashboard-Query/m-p/915797#M469097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is a simple script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let vFiscalStart = 4;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //first month of fiscal year&lt;/P&gt;&lt;P&gt;Let vMinDate = Num(MonthStart(Today(), -24)); //or other logic if required&lt;/P&gt;&lt;P&gt;Let vMaxDate = Floor(MonthEnd (Today()));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Calendar:&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;&amp;nbsp; If(Month &amp;lt; $(vFiscalStart), Year - 1, Year) As FiscalYear,&lt;/P&gt;&lt;P&gt;&amp;nbsp; If(Month &amp;lt; $(vFiscalStart), Month + 13 - $(vFiscalStart), Month + 1 - $(vFiscalStart)) As FiscalPeriod&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;LOAD Date(nDate) As Date,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Year(nDate) As Year,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Month(nDate) As Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Day(nDate) As Day&lt;/P&gt;&lt;P&gt;&amp;nbsp; // other date fields as required...&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;LOAD $(vMinDate) + &lt;EM&gt;RecNo&lt;/EM&gt;() - 1 As nDate&lt;/P&gt;&lt;P&gt;AUTOGENERATE $(vMaxDate) - $(vMinDate) + 1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(Edit: changed RowNo() to RecNo())&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jul 2015 11:36:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/2-Calendars-in-a-single-dashboard-Query/m-p/915797#M469097</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-07-27T11:36:36Z</dc:date>
    </item>
    <item>
      <title>Re: 2 Calendars in a single dashboard ? Query</title>
      <link>https://community.qlik.com/t5/QlikView/2-Calendars-in-a-single-dashboard-Query/m-p/915798#M469098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this from Rob Wunderlich&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://qlikviewcookbook.com/recipes/download-tag/calendar/" title="http://qlikviewcookbook.com/recipes/download-tag/calendar/"&gt;Search Recipes | Qlikview Cookbook&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2015 22:01:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/2-Calendars-in-a-single-dashboard-Query/m-p/915798#M469098</guid>
      <dc:creator>maximiliano_vel</dc:creator>
      <dc:date>2015-08-04T22:01:20Z</dc:date>
    </item>
    <item>
      <title>Re: 2 Calendars in a single dashboard ? Query</title>
      <link>https://community.qlik.com/t5/QlikView/2-Calendars-in-a-single-dashboard-Query/m-p/915799#M469099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Jonathan Dienst and Maximiliano Velez. It so happens that the master calendar has provisions for fiscal year and the std year format, all I had to do was create the values and set it to FIN_month to denote financial month.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did try using the script given and it made the system slow. I am not sure of the reason behind it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" data-avatarid="2417" data-externalid="" data-online="false" data-presence="null" data-userid="13229" data-username="jontydkpi" href="https://community.qlik.com/people/jontydkpi"&gt;jonathan dienst&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2015 08:41:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/2-Calendars-in-a-single-dashboard-Query/m-p/915799#M469099</guid>
      <dc:creator>snehamahaveer</dc:creator>
      <dc:date>2015-08-05T08:41:38Z</dc:date>
    </item>
  </channel>
</rss>

