<?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 for multiple columns in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Master-Calendar-for-multiple-columns/m-p/1194705#M1237045</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the dates reference the same grain (e.g. order processing has order_date and shipped_date)&lt;/P&gt;&lt;P&gt;you can create a role-playing table which connects (bridges) your facts to the master calendar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="100" style="border: 1px solid rgb(0, 0, 0); width: 196px; height: 96px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;%Fact&lt;BR /&gt;&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Date Type&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;%Date&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Ordered&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;Shipped&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;Ordered&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="126" style="border: 1px solid rgb(0, 0, 0); width: 164px; height: 127px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;%Date&lt;BR /&gt;&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Calendar Date&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;6/1/2018&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;6/3/2018&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;5/25/2018&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;6/1/2018&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Jun 2018 14:28:57 GMT</pubDate>
    <dc:creator>markp201</dc:creator>
    <dc:date>2018-06-28T14:28:57Z</dc:date>
    <item>
      <title>Master Calendar for multiple columns</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar-for-multiple-columns/m-p/1194697#M1237035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I followed your master calendar tutorial to get all dates to show. My question is, I have more than one date column I'd like to add this on. Am I going to have to copy and paste the code for each column? Here's what I have now&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14751830435857027" jivemacro_uid="_14751830435857027"&gt;
&lt;P&gt;QuartersMap:&amp;nbsp; &lt;/P&gt;
&lt;P&gt;MAPPING LOAD&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;rowno() as Month,&amp;nbsp; &lt;/P&gt;
&lt;P&gt;'Q' &amp;amp; Ceil (rowno()/3) as Quarter&amp;nbsp; &lt;/P&gt;
&lt;P&gt;AUTOGENERATE (12);&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;Temp:&amp;nbsp; &lt;/P&gt;
&lt;P&gt;Load&amp;nbsp; &lt;/P&gt;
&lt;P&gt;min(exam_date) as minDate,&amp;nbsp; &lt;/P&gt;
&lt;P&gt;max(exam_date) as maxDate&amp;nbsp; &lt;/P&gt;
&lt;P&gt;Resident exam;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;Let varMinDate = Num(Peek('minDate', 0, 'Temp'));&amp;nbsp; &lt;/P&gt;
&lt;P&gt;Let varMaxDate = Num(Peek('maxDate', 0, 'Temp'));&amp;nbsp; &lt;/P&gt;
&lt;P&gt;DROP Table Temp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;TempCalendar:&amp;nbsp; &lt;/P&gt;
&lt;P&gt;LOAD&amp;nbsp; &lt;/P&gt;
&lt;P&gt;$(varMinDate) + Iterno()-1 As Num,&amp;nbsp; &lt;/P&gt;
&lt;P&gt;Date($(varMinDate) + IterNo() - 1) as TempDate&amp;nbsp; &lt;/P&gt;
&lt;P&gt;AutoGenerate 1 While $(varMinDate) + IterNo() -1 &amp;lt;= $(varMaxDate);&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;MasterCalendar:&amp;nbsp; &lt;/P&gt;
&lt;P&gt;Load&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; TempDate AS exam_date,&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; week(TempDate) As Week,&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; Year(TempDate) As Year,&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; Month(TempDate) As Month,&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; Day(TempDate) As Day,&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; ApplyMap('QuartersMap', month(TempDate), Null()) as Quarter,&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; Week(weekstart(TempDate)) &amp;amp; '-' &amp;amp; WeekYear(TempDate) as WeekYear,&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; WeekDay(TempDate) as WeekDay&amp;nbsp; &lt;/P&gt;
&lt;P&gt;Resident TempCalendar&amp;nbsp; &lt;/P&gt;
&lt;P&gt;Order By TempDate ASC;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;Drop Table TempCalendar; &lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I also have a cert_date column, as well as a date_updated column. Is there a better way to do that on multiple columns?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, none of the date picker extensions out there work for filtering, do you have any suggestions on a better date filter? Honestly, your guys' date filter is pretty lacking. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 16:26:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar-for-multiple-columns/m-p/1194697#M1237035</guid>
      <dc:creator>michael_andrews</dc:creator>
      <dc:date>2026-01-26T16:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar for multiple columns</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar-for-multiple-columns/m-p/1194698#M1237037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See if this helps:&lt;/P&gt;&lt;P&gt;&lt;A href="http://qlikviewcookbook.com/2015/05/better-calendar-scripts/" title="http://qlikviewcookbook.com/2015/05/better-calendar-scripts/"&gt;Better Calendar Scripts | Qlikview Cookbook&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2016 21:17:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar-for-multiple-columns/m-p/1194698#M1237037</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-09-29T21:17:11Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar for multiple columns</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar-for-multiple-columns/m-p/1194699#M1237038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;see also:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/3585"&gt;Canonical Date&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2016 21:22:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar-for-multiple-columns/m-p/1194699#M1237038</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2016-09-29T21:22:00Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar for multiple columns</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar-for-multiple-columns/m-p/1194700#M1237040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe I tagged this wrong, we have qliksense. Those look great, but they look like they're all for qlikview&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2016 21:25:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar-for-multiple-columns/m-p/1194700#M1237040</guid>
      <dc:creator>michael_andrews</dc:creator>
      <dc:date>2016-09-29T21:25:15Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar for multiple columns</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar-for-multiple-columns/m-p/1194701#M1237041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Let me run this by you quick if I'm thinking about this correctly. So say I have an exam table with exam_date, exam_expire, and exam_active, that I want to have the date thing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would create a master calendar with all possible dates, then create another table that has exam_id (the pk for table exam) that links to my exam table, and a date field that links to the master calendar?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If that's the case, I'm not following how I would still map that to the three date columns?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2016 21:32:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar-for-multiple-columns/m-p/1194701#M1237041</guid>
      <dc:creator>michael_andrews</dc:creator>
      <dc:date>2016-09-29T21:32:02Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar for multiple columns</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar-for-multiple-columns/m-p/1194702#M1237042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use it in Qlik Sense as well&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2016 21:32:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar-for-multiple-columns/m-p/1194702#M1237042</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-09-29T21:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar for multiple columns</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar-for-multiple-columns/m-p/1194703#M1237043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do I do that? Whenever I try to open qvw files, they're just unreadable text. I'm not sure how you install those on qlik sense because doesn't it require js files and the qext file and what not?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2016 21:37:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar-for-multiple-columns/m-p/1194703#M1237043</guid>
      <dc:creator>michael_andrews</dc:creator>
      <dc:date>2016-09-29T21:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar for multiple columns</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar-for-multiple-columns/m-p/1194704#M1237044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please post some sample data and your expected result to demonstrate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2016 22:39:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar-for-multiple-columns/m-p/1194704#M1237044</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2016-09-29T22:39:09Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar for multiple columns</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar-for-multiple-columns/m-p/1194705#M1237045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the dates reference the same grain (e.g. order processing has order_date and shipped_date)&lt;/P&gt;&lt;P&gt;you can create a role-playing table which connects (bridges) your facts to the master calendar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="100" style="border: 1px solid rgb(0, 0, 0); width: 196px; height: 96px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;%Fact&lt;BR /&gt;&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Date Type&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;%Date&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Ordered&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;Shipped&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;Ordered&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="126" style="border: 1px solid rgb(0, 0, 0); width: 164px; height: 127px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;%Date&lt;BR /&gt;&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Calendar Date&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;6/1/2018&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;6/3/2018&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;5/25/2018&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;6/1/2018&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2018 14:28:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar-for-multiple-columns/m-p/1194705#M1237045</guid>
      <dc:creator>markp201</dc:creator>
      <dc:date>2018-06-28T14:28:57Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar for multiple columns</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar-for-multiple-columns/m-p/1194706#M1237046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See this tutorial and download the Qlik Sense example file: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Qlikview Cookbook: Tutorial - Using Common Date Dimensions &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://qlikviewcookbook.com/recipes/download-info/tutorial-using-common-date-dimensions/" rel="nofollow" target="_blank"&gt;http://qlikviewcookbook.com/recipes/download-info/tutorial-using-common-date-dimensions/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://masterssummit.com" rel="nofollow" target="_blank"&gt;http://masterssummit.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://qlikviewcookbook.com" rel="nofollow" target="_blank"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2018 04:54:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar-for-multiple-columns/m-p/1194706#M1237046</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2018-06-29T04:54:38Z</dc:date>
    </item>
  </channel>
</rss>

