<?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 Master Calender in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285365#M706646</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 first define the startdate and enddate from your existing date field and then use forllowing script to create master calendar.After that link both Open_time and orig date to this calendar.Hope this will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET varMinDate = StartDate; eg:'6/15/2001'&lt;/P&gt;&lt;P&gt;LET varMaxDate = EndDate; eg: Today();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//************TempCalendar***********&lt;BR /&gt;TempCalendar: &lt;BR /&gt;LOAD&lt;BR /&gt; $(varMinDate) + rowno() - 1 AS DateNumber,&lt;BR /&gt; date ($(varMinDate) + rowno() - 1) AS TempDate&lt;BR /&gt;AUTOGENERATE&lt;BR /&gt; $(varMaxDate) - $(varMinDate) + 1;&lt;/P&gt;&lt;P&gt;//*************Master Calendar************&lt;BR /&gt;MasterCalendar: &lt;BR /&gt;LOAD&lt;BR /&gt; TempDate AS Date,&lt;BR /&gt; Week (TempDate) AS Week,&lt;BR /&gt; Year (TempDate) AS Year,&lt;BR /&gt; Month (TempDate) AS Month,&lt;BR /&gt; Day (TempDate) AS Day,&lt;BR /&gt; Weekday (TempDate) AS WeekDay,&lt;BR /&gt; 'Q' &amp;amp; Ceil(Month (TempDate)/3) AS Quarter,&lt;BR /&gt; Date( Monthstart (TempDate), 'MMM-YYYY') AS MonthYear,&lt;BR /&gt; Week (TempDate) &amp;amp; '-' &amp;amp; Year (TempDate) AS WeekYear&lt;BR /&gt; &lt;BR /&gt;Resident TempCalendar&lt;BR /&gt;Order by TempDate ASC;&lt;BR /&gt; &lt;BR /&gt;Drop Table TempCalendar; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Jan 2012 06:17:55 GMT</pubDate>
    <dc:creator>vijay_iitkgp</dc:creator>
    <dc:date>2012-01-18T06:17:55Z</dc:date>
    <item>
      <title>Master Calender</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285364#M706645</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;&lt;/P&gt;&lt;P&gt;I have an issue with master calender.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to develop one master calender. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have two major tables, Probsummary and Changesummary. &lt;/P&gt;&lt;P&gt;Both the tables have two &lt;STRONG&gt;DIFFERENT &lt;/STRONG&gt;date columns, Probsummary:- Open_time and ChangeSummary: Orig_Date&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I need a central calendar from where I should be able to extract Year,Quarter, Month, Weekofday, Week etc. . . . &lt;/P&gt;&lt;P&gt;And i need the selections made on these calendar fields to reflect across changesummary and probsummary. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm fairly new to ETL side of Qlikview therefore i'm in need of guidance regarding this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would want to know the best way to approach this. . . &lt;/P&gt;&lt;P&gt;Few standard scripts would also help. . . . &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2012 06:11:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285364#M706645</guid>
      <dc:creator />
      <dc:date>2012-01-18T06:11:21Z</dc:date>
    </item>
    <item>
      <title>Master Calender</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285365#M706646</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 first define the startdate and enddate from your existing date field and then use forllowing script to create master calendar.After that link both Open_time and orig date to this calendar.Hope this will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET varMinDate = StartDate; eg:'6/15/2001'&lt;/P&gt;&lt;P&gt;LET varMaxDate = EndDate; eg: Today();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//************TempCalendar***********&lt;BR /&gt;TempCalendar: &lt;BR /&gt;LOAD&lt;BR /&gt; $(varMinDate) + rowno() - 1 AS DateNumber,&lt;BR /&gt; date ($(varMinDate) + rowno() - 1) AS TempDate&lt;BR /&gt;AUTOGENERATE&lt;BR /&gt; $(varMaxDate) - $(varMinDate) + 1;&lt;/P&gt;&lt;P&gt;//*************Master Calendar************&lt;BR /&gt;MasterCalendar: &lt;BR /&gt;LOAD&lt;BR /&gt; TempDate AS Date,&lt;BR /&gt; Week (TempDate) AS Week,&lt;BR /&gt; Year (TempDate) AS Year,&lt;BR /&gt; Month (TempDate) AS Month,&lt;BR /&gt; Day (TempDate) AS Day,&lt;BR /&gt; Weekday (TempDate) AS WeekDay,&lt;BR /&gt; 'Q' &amp;amp; Ceil(Month (TempDate)/3) AS Quarter,&lt;BR /&gt; Date( Monthstart (TempDate), 'MMM-YYYY') AS MonthYear,&lt;BR /&gt; Week (TempDate) &amp;amp; '-' &amp;amp; Year (TempDate) AS WeekYear&lt;BR /&gt; &lt;BR /&gt;Resident TempCalendar&lt;BR /&gt;Order by TempDate ASC;&lt;BR /&gt; &lt;BR /&gt;Drop Table TempCalendar; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2012 06:17:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285365#M706646</guid>
      <dc:creator>vijay_iitkgp</dc:creator>
      <dc:date>2012-01-18T06:17:55Z</dc:date>
    </item>
    <item>
      <title>Master Calender</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285366#M706647</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;You can have a look at &lt;A _jive_internal="true" href="https://community.qlik.com/message/114947#114947"&gt;http://community.qlik.com/message/114947#114947&lt;/A&gt;&lt;/P&gt;&lt;P&gt;specially at the last post of the link.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this would help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&amp;nbsp; tresesco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2012 06:23:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285366#M706647</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2012-01-18T06:23:14Z</dc:date>
    </item>
    <item>
      <title>Master Calender</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285367#M706648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hey Tresesco,&lt;/P&gt;&lt;P&gt;Good to c you here. Where r u these days.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2012 06:28:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285367#M706648</guid>
      <dc:creator>vijay_iitkgp</dc:creator>
      <dc:date>2012-01-18T06:28:18Z</dc:date>
    </item>
    <item>
      <title>Master Calender</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285368#M706649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can create master calender as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let vStartDate= num(MakeDate(2010));&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // start year of your calender&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mapping Load rowno() as Month,&lt;/P&gt;&lt;P&gt;'Q' &amp;amp; ceil(rowno()/3) as Quarter&lt;/P&gt;&lt;P&gt;AutoGenerate(12);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cal1:&lt;/P&gt;&lt;P&gt;load Date($(vStartDate)+RowNo()-1) as Date&lt;/P&gt;&lt;P&gt;AutoGenerate(num(today())- $(vStartDate)+1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cal2:&lt;/P&gt;&lt;P&gt;load &lt;/P&gt;&lt;P&gt;*,&lt;/P&gt;&lt;P&gt;applymap('quarter_map',num(Month(TempDate)),null()) as Quarter,&lt;/P&gt;&lt;P&gt;year(Date) as Year,&lt;/P&gt;&lt;P&gt;Month(Date) as Month,&lt;/P&gt;&lt;P&gt;Day(Date) as Day,&lt;/P&gt;&lt;P&gt;WeekDay(TempDate) as WeekDay,&lt;/P&gt;&lt;P&gt;dual((Month(Date) &amp;amp;'-'&amp;amp;Year(Date)),num(MakeDate(year(Date),month(Date)))) as Monthyear&lt;/P&gt;&lt;P&gt;Resident cal1;&lt;/P&gt;&lt;P&gt;drop table cal1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;Probsummary:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;load *,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;date(&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;Open_time&lt;/SPAN&gt;) as Date&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // to create linking with master calender dates&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;from ............;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-size: 12px; background-color: #eef4f9; font-family: Arial;"&gt;ChangeSummary:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-size: 12px; background-color: #eef4f9; font-family: Arial;"&gt;load *,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-size: 12px; background-color: #eef4f9; font-family: Arial;"&gt;date(&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;Orig_Date&lt;/SPAN&gt;) as Date&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // to create linking&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-size: 12px; background-color: #eef4f9; font-family: Arial;"&gt;from .............;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijit&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-size: 12px; background-color: #eef4f9; font-family: Arial;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2012 06:57:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285368#M706649</guid>
      <dc:creator />
      <dc:date>2012-01-18T06:57:34Z</dc:date>
    </item>
    <item>
      <title>Master Calender</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285369#M706650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would create &lt;EM&gt;&lt;STRONG&gt;two &lt;/STRONG&gt;&lt;/EM&gt;Master Calendar tables. One for "Open_time" and one for "Orig_Date".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If these dates really are two different dates then it is clearer for the end-user if you present them in different list boxes. E.g. "Month_for_Open_Time" may well be 'February' also when you have selected 'January' as "Month_for_Orig_Date". &lt;/P&gt;&lt;P&gt;/HIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2012 08:55:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285369#M706650</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2012-01-18T08:55:00Z</dc:date>
    </item>
    <item>
      <title>Master Calender</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285370#M706651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;master calender must be only one and you can associate as much table to it as you want through a common field Date.....when you click on dates of "open_time" it picks only those dates from the master calender which is in "open_time".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2012 09:11:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285370#M706651</guid>
      <dc:creator />
      <dc:date>2012-01-18T09:11:27Z</dc:date>
    </item>
    <item>
      <title>Master Calender</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285371#M706652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; //This is my first table:-&lt;/P&gt;&lt;P&gt;Probsummary:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD NUMBER as P_Number, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OPEN_TIME, &lt;STRONG&gt;//This is date which I have to use for this table&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OPENED_BY, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PRIORITY_CODE as P_Priority, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ASSIGNMENT, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOCATION as P_Location, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ALERT1, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF(ALERT1='1','Response Breached','Within Response') as [Resonse SLA],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ASSIGNEE_NAME as Technician, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CONTACT_NAME, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INCIDENT_ID, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PROBLEM_STATUS, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SUBCATEGORY as P_SubCategory, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PRODUCT_TYPE as P_ProductType, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PROBLEM_TYPE as P_ProblemType, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; COUNTRY as P_Country&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[HPSM_Data 10th Jan.xls]&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is ProbsummaryM1$);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Join&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD NUMBER as P_Number, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SLA_BREACH, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AFFECTED_SERVICES as P_AffectedServices, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AFFECTED_ITEM as P_AffectedItem, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ZMANNED as P_ZMANNED, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF(ZMANNED='t','Yes','No') as [Manned Site?],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ZITC as P_ZITC,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF(ZITC='t','INFRA','APPLICATION') as Select&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[HPSM_Data 10th Jan.xls]&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is ProbsummaryM2$);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE Probsummary into Probsummary.qvd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second table:-&lt;/P&gt;&lt;P&gt;Changesummary:&lt;/P&gt;&lt;P&gt;LOAD NUMBER as C_Number, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CATEGORY, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; STATUS, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; REQUESTED_BY, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ASSIGNED_TO, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ASSIGN_DEPT, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; COORDINATOR, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CURRENT_PHASE, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PRIORITY_CODE as C_Priority, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OPERATOR , &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ORIG_DATE_ENTERED, &lt;STRONG&gt;//This is date which I have to use for this table&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ORIG_OPERATOR, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SUBCATEGORY, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOCATION as C_Location, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AFFECTED_SERVICES as C_AffectedServices&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[HPSM_Data 10th Jan.xls]&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is CM3RM1$);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;join&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD NUMBER as C_Number, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SEVERITY as C_Severity, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AFFECTED_ITEM as C_AffectedItem, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; REQUESTEDDATE, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOCATION_FULL_NAME as C_LocationFullName, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ZINCIDENT_ID, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ZITC as C_ZITC, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF(ZITC='t','INFRA','APPLICATION') as ChngSelect&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[HPSM_Data 10th Jan.xls]&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is CM3RM2$);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;store Changesummary into Changesummary.qvd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now Should I load the Mastercalender and then link my loaded tables? &lt;/P&gt;&lt;P&gt;1.&amp;nbsp; Because I have already loaded the tables so for the sake of linking them to calender dates should i use a resident Load? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2 When I try an aggregation, Count(NUMBER) {I do group by of all the columns when i do count} at script level . . I'm getting the wrong count. . But if i try at the document level it is correct . . . any specific reason? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2012 09:52:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285371#M706652</guid>
      <dc:creator />
      <dc:date>2012-01-18T09:52:14Z</dc:date>
    </item>
    <item>
      <title>Master Calender</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285372#M706653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree that you should always try to use only one Calendar table - if possible. &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;However, if your data model contains two dates, e.g. OrderDate and DeliveryDate, then you face the question how a selection in the Calendar table, e.g. in the field "Month" should be interpreted: Should QlikView's logical inference pick out transactions with OrderDate in this month, or should it pick out transactions with DeliveryDate in this month? The two cases correspond to two different data models and QlikView cannot know what the end user means. &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;All I am saying is that it is possible to include several Calendar tables in the same QlikView app, and I think that sometimes this is the best solution.&lt;BR /&gt;/HIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2012 10:02:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285372#M706653</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2012-01-18T10:02:59Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calender</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285373#M706654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you @&lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" href="https://community.qlik.com/people/hic" id="jive-400315316122607590308"&gt;Henric Cronström&lt;/A&gt;&lt;/P&gt;&lt;P&gt;But my requirement says there has to be only one selection for month/year/week etc. . . They should reflect for both. . . Is there a work around? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi &lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" href="https://community.qlik.com/people/vijit1810" id="jive-6079915316122567755308"&gt;vijit jindal&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried you solution I got the following error:- &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field not found - &amp;lt;TempDate&amp;gt;&lt;/P&gt;&lt;P&gt;Cal2:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load*,&lt;/P&gt;&lt;P&gt;applymap('quarter_map',num(Month(TempDate)),null()) as Quarter,&lt;/P&gt;&lt;P&gt;year(Date) as Year,&lt;/P&gt;&lt;P&gt;Month(Date) as Month,&lt;/P&gt;&lt;P&gt;Day(Date) as Day,&lt;/P&gt;&lt;P&gt;WeekDay(TempDate) as WeekDay,&lt;/P&gt;&lt;P&gt;dual((Month(Date) &amp;amp;'-'&amp;amp;Year(Date)),num(MakeDate(year(Date),month(Date)))) as Monthyear&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Resident Cal1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rest everything got loaded properly. . &lt;/P&gt;&lt;P&gt;I ll attach a screenshot also . . . to show my data model. . . &lt;/P&gt;&lt;P&gt;&lt;IMG /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2012 12:11:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285373#M706654</guid>
      <dc:creator />
      <dc:date>2012-01-18T12:11:05Z</dc:date>
    </item>
    <item>
      <title>Master Calender</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285374#M706655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You ask "Is there a work around?". The question is still: How should QlikView behave when you click on "Month"? Should QlikView show transactions with this OrderMonth (or Open_Time) or should QlikView show transactions with this DeliveryMonth (or Orig_Date)? Or should QlikView show the union between the two sets? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These are all different behaviours and you must decide which way to go. Once you have decided, you can create a data model that does what you want. &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;So - yes - there is a work-around.&lt;BR /&gt;/HIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2012 12:39:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285374#M706655</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2012-01-18T12:39:28Z</dc:date>
    </item>
    <item>
      <title>Master Calender</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285375#M706656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dears,&lt;/P&gt;&lt;P&gt;fully agree with Henric.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A mastercalendar makes only sense if referring to (one field in) one table.&lt;/P&gt;&lt;P&gt;As kind of workaround you then should concatenate both tables, &lt;/P&gt;&lt;P&gt;&lt;PRE&gt;&lt;/PRE&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;OPEN_TIME AS Mydate,&lt;/P&gt;&lt;P&gt;'Opening'&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS Criteria,&lt;/P&gt;&lt;P&gt;....;&lt;/P&gt;&lt;P&gt;CONCATENATE LOAD&lt;/P&gt;&lt;P&gt;ORIG_DATE_ENTERED&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS MyDate,&lt;/P&gt;&lt;P&gt;'Change'&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS Criteria&lt;/P&gt;&lt;P&gt;.....;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The mastercalendar should then refer to "MyDate". Each selection there should then deliver some plausible results, further selections might be done by "Criteria".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2012 14:51:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285375#M706656</guid>
      <dc:creator>prieper</dc:creator>
      <dc:date>2012-01-18T14:51:56Z</dc:date>
    </item>
    <item>
      <title>Master Calender</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285376#M706657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry i have done a mistake replace cal2 table code with the below code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cal2:&lt;/P&gt;&lt;P&gt;load &lt;/P&gt;&lt;P&gt;*,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;year(Date) as Year,&lt;/P&gt;&lt;P&gt;Month(Date) as Month,&lt;/P&gt;&lt;P&gt;applymap('quarter_map',Month,null()) as Quarter,&lt;/P&gt;&lt;P&gt;Day(Date) as Day,&lt;/P&gt;&lt;P&gt;WeekDay(TempDate) as WeekDay,&lt;/P&gt;&lt;P&gt;dual((Month(Date) &amp;amp;'-'&amp;amp;Year(Date)),num(MakeDate(year(Date),month(Date)))) as Monthyear&lt;/P&gt;&lt;P&gt;Resident cal1;&lt;/P&gt;&lt;P&gt;drop table cal1;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2012 17:57:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285376#M706657</guid>
      <dc:creator />
      <dc:date>2012-01-18T17:57:37Z</dc:date>
    </item>
    <item>
      <title>Master Calender</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285377#M706658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are&amp;nbsp; Probsummary and Changesummary linked by a common field?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2012 19:34:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285377#M706658</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2012-01-18T19:34:48Z</dc:date>
    </item>
    <item>
      <title>Master Calender</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285378#M706659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ya&lt;/P&gt;&lt;P&gt;Probsummary has &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;date(&lt;/SPAN&gt;&lt;SPAN style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;Open_time&lt;/SPAN&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;) as&amp;nbsp; Date&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-size: 12px; font-family: Arial;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-size: 12px; background-color: #ffffff; font-family: Arial;"&gt;Changesummary has&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-size: 12px; background-color: #eef4f9; font-family: Arial;"&gt;Orig_Date as Date&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-size: 12px; background-color: #eef4f9; font-family: Arial;"&gt;and&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-size: 12px; background-color: #eef4f9; font-family: Arial;"&gt;mastercalender has&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-size: 12px; background-color: #eef4f9; font-family: Arial;"&gt;Date&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-size: 12px; background-color: #eef4f9; font-family: Arial;"&gt;so Probsummary and &lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;Changesummary both are linked to same field "Date" in mastercalender.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-size: 12px; background-color: #ffffff; font-family: Arial;"&gt;mastercalender contains all the dates which are present in both the tables i.e Probsummary and &lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;Changesummary .&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-size: 12px; background-color: #ffffff; font-family: Arial;"&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;hope this makes you clear. &lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-size: 12px; background-color: #eef4f9; font-family: Arial;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-size: 12px; background-color: #eef4f9; font-family: Arial;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-size: 12px; background-color: #ffffff; font-family: Arial;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2012 04:58:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285378#M706659</guid>
      <dc:creator />
      <dc:date>2012-01-19T04:58:22Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calender</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285379#M706660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No &lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" href="https://community.qlik.com/people/robwunderlich" id="jive-228615380458171649961"&gt;Rob Wunderlich&lt;/A&gt;, there is no relation. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" href="https://community.qlik.com/people/hic" id="jive-400315380458124980961"&gt;Henric Cronström&lt;/A&gt;, Thanks. . . &lt;/P&gt;&lt;P&gt;The behaviour should be something like this, If there is a selection of a Month (from master calender) then the selection should reflect across Probsummary and changesummary (Independently). . . When you say Union for that there has to be a relation b/w Probsummary and Changesummary which is not present. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" href="https://community.qlik.com/people/vijit1810" id="jive-6079915380458154581961"&gt;vijit jindal&lt;/A&gt;, I am getting the below error now: -&lt;/P&gt;&lt;P&gt;Field not found - &amp;lt;Month&amp;gt;&lt;/P&gt;&lt;P&gt;Cal2:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load*,&lt;/P&gt;&lt;P&gt;year(Date) as Year,&lt;/P&gt;&lt;P&gt;Month(Date) as Month,&lt;/P&gt;&lt;P&gt;applymap('quarter_map',Month,null()) as Quarter,&lt;/P&gt;&lt;P&gt;Day(Date) as Day,&lt;/P&gt;&lt;P&gt;WeekDay(TempDate) as WeekDay,&lt;/P&gt;&lt;P&gt;dual((Month(Date) &amp;amp;'-'&amp;amp;Year(Date)),num(MakeDate(year(Date),month(Date)))) as Monthyear&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Resident Cal1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The exact Master code is : -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let vStartDate= num(MakeDate(2011));&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // start year of your calender&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mapping Load rowno() as Month,&lt;/P&gt;&lt;P&gt;'Q' &amp;amp; ceil(rowno()/3) as Quarter&lt;/P&gt;&lt;P&gt;AutoGenerate(12);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cal1:&lt;/P&gt;&lt;P&gt;load Date($(vStartDate)+RowNo()-1) as Date&lt;/P&gt;&lt;P&gt;AutoGenerate(num(today())- $(vStartDate)+1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cal2:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load*,&lt;/P&gt;&lt;P&gt;year(Date) as Year,&lt;/P&gt;&lt;P&gt;Month(Date) as Month,&lt;/P&gt;&lt;P&gt;applymap('quarter_map',Month,null()) as Quarter,&lt;/P&gt;&lt;P&gt;Day(Date) as Day,&lt;/P&gt;&lt;P&gt;WeekDay(TempDate) as WeekDay,&lt;/P&gt;&lt;P&gt;dual((Month(Date) &amp;amp;'-'&amp;amp;Year(Date)),num(MakeDate(year(Date),month(Date)))) as Monthyear&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Resident Cal1;&lt;/P&gt;&lt;P&gt;drop table Cal1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Probsummary:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load *,&lt;/P&gt;&lt;P&gt;date(OPEN_TIME) as Date&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // to create linking with master calender dates&lt;/P&gt;&lt;P&gt;Resident Probsummary;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Changesummary:&lt;/P&gt;&lt;P&gt;load *,&lt;/P&gt;&lt;P&gt;date(ORIG_DATE_ENTERED) as Date&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // to create linking&lt;/P&gt;&lt;P&gt;Resident Changesummary;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S: Thank you all for your continuous help. . . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2012 05:02:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285379#M706660</guid>
      <dc:creator />
      <dc:date>2012-01-19T05:02:32Z</dc:date>
    </item>
    <item>
      <title>Master Calender</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285380#M706661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="Model1.JPG" class="jive-image-thumbnail jive-image" onclick="" src="https://community.qlik.com/legacyfs/online/10424_Model1.JPG" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2012 05:14:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285380#M706661</guid>
      <dc:creator />
      <dc:date>2012-01-19T05:14:45Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calender</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285381#M706662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN&gt;I recommend you try Qlikview Components (&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://qlikviewcomponents.org"&gt;http://qlikviewcomponents.org&lt;/A&gt;&lt;SPAN&gt;). The entire script to generate your calendar would be:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;$(Include=..\qvc_runtime\qvc.qvs);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;CALL Qvc.CalendarFromField('OPEN_TIME');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;CALL Qvc.CalendarFromField('ORIG_DATE_ENTERED');&lt;/SPAN&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://qlikviewcomponents.org"&gt;http://qlikviewcomponents.org&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2012 05:28:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285381#M706662</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2012-01-19T05:28:49Z</dc:date>
    </item>
    <item>
      <title>Master Calender</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285382#M706663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;give the name to the mapping table as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;quarter_map:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;mapping Load rowno() as Month,&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;'Q' &amp;amp; ceil(rowno()/3) as Quarter&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;AutoGenerate(12);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2012 05:47:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285382#M706663</guid>
      <dc:creator />
      <dc:date>2012-01-19T05:47:00Z</dc:date>
    </item>
    <item>
      <title>Master Calender</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285383#M706664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I still have this error. . . &lt;/P&gt;&lt;P&gt;I had named the mappping table &lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;quarter_map&amp;nbsp; even after that i got the below error . . . &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Field not found - &amp;lt;Month&amp;gt;&lt;/P&gt;&lt;P&gt;cal2:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load *,&lt;/P&gt;&lt;P&gt;year(Date) as Year,&lt;/P&gt;&lt;P&gt;Month(Date) as Month,&lt;/P&gt;&lt;P&gt;applymap('quarter_map',Month,null()) as Quarter,&lt;/P&gt;&lt;P&gt;Day(Date) as Day,&lt;/P&gt;&lt;P&gt;WeekDay(TempDate) as WeekDay,&lt;/P&gt;&lt;P&gt;dual((Month(Date) &amp;amp;'-'&amp;amp;Year(Date)),num(MakeDate(year(Date),month(Date)))) as Monthyear&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Resident cal1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2012 08:56:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calender/m-p/285383#M706664</guid>
      <dc:creator />
      <dc:date>2012-01-19T08:56:09Z</dc:date>
    </item>
  </channel>
</rss>

