<?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 in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Master-Calendar/m-p/296576#M496565</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have a personal email address?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 Dec 2011 09:32:46 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-12-14T09:32:46Z</dc:date>
    <item>
      <title>Master Calendar</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar/m-p/296569#M496558</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 have several QVDs with date fields (Year and Month). In other to avoid a loop, I have decided to use a master calendar but its still not working properly (the dates are not joinning) - e.g. when I select 2010, it does not affect the selection, it duplicates some of the data, etc. Could you please help me as its my first time using Master Calendar. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CalendarLinkage:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp; Year_O as [Calendar Year],&lt;/P&gt;&lt;P&gt;&amp;nbsp; Month_O as [Calendar Month]&lt;/P&gt;&lt;P&gt;From&lt;/P&gt;&lt;P&gt;data\SAPMM\Projects\BSID_OpenItems_Header.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE (CalendarLinkage)&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; Year_C&amp;nbsp; as [Calendar Year],&lt;/P&gt;&lt;P&gt;&amp;nbsp; Month_C as [Calendar Month]&lt;/P&gt;&lt;P&gt;FROM &lt;/P&gt;&lt;P&gt;data\SAPMM\Projects\BSAD_ClosedItems_Header.qvd (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;&lt;/P&gt;&lt;P&gt;CONCATENATE (CalendarLinkage)&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt; Year as [Calendar Year]&lt;/P&gt;&lt;P&gt;from &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;\\10.193.2.14\qvapps\Live\InlinePurchases_2.xls&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is Sheet1$);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;﻿&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Dec 2011 11:53:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar/m-p/296569#M496558</guid>
      <dc:creator />
      <dc:date>2011-12-13T11:53:50Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar/m-p/296570#M496559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;apply this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let vStartDate= num(MakeDate(&lt;STRONG&gt;2010&lt;/STRONG&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;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;//Month(Date) &amp;amp;'-'&amp;amp;Year(Date) as Monthyear,&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;STRONG&gt;note: instead of 2010 you can replace the year which is your starting year.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;By applying the above script your master calender gets ready now you can associate the dates in the table by aliasing as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;calender linkage:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load *,&lt;/P&gt;&lt;P&gt;date as Date&lt;/P&gt;&lt;P&gt;from qvdname;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;note: here date is the field which are the dates coming from your data.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;you get the table view as:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;﻿﻿&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;﻿check PFA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this makes you clear.&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;/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;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Dec 2011 12:15:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar/m-p/296570#M496559</guid>
      <dc:creator />
      <dc:date>2011-12-13T12:15:31Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar/m-p/296571#M496560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the below. its helpful. I am probably a step closer now...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please see attached.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basically, The data is still duplicating and selection not effective when I select "Calendar Year". Please help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Dec 2011 12:40:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar/m-p/296571#M496560</guid>
      <dc:creator />
      <dc:date>2011-12-13T12:40:13Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar/m-p/296572#M496561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As shown in your Doc1 there is no linking between master calender and calender linkage, so do aliasing to associate&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;calender linkage&lt;/STRONG&gt; table with &lt;STRONG&gt;cal2&lt;/STRONG&gt; as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;calender linkage:&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;LOAD&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&amp;nbsp; Year_O as Year,&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&amp;nbsp; Month_O as [Calendar Month]&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;From&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;data\SAPMM\Projects\BSID_OpenItems_Header.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this , tell me if the problem persist.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Dec 2011 04:55:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar/m-p/296572#M496561</guid>
      <dc:creator />
      <dc:date>2011-12-14T04:55:17Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar/m-p/296573#M496562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi There&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That seem to work but when I add (Data\SAPMM\Projects\COVP.qvd(Qvd)) - see last statement, I get loop problem "One or more loops have been detected in your database structure. Loops may cause ambiguous results and should therefore be avoided. QlikView will cut the loop(s) by setting one or more tables as loosely coupled. Settings for loosely coupled tables can be modified after script execution in the tables page of the document properties dialog."&lt;/P&gt;&lt;P&gt;I have other tables to add with dates... do you know the best way to loose them? The relationship is in the diagram I sent to you earlier.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks so much for your help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CalendarLinkage_Sales:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;%InvoiceBillingDocument_Key,&lt;/P&gt;&lt;P&gt;Year_O as Year,&lt;/P&gt;&lt;P&gt;Month_O as Month&lt;/P&gt;&lt;P&gt;From&lt;/P&gt;&lt;P&gt;data\SAPMM\Projects\BSID_OpenItems_Header.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE (CalendarLinkage_Sales)&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;%InvoiceBillingDocument_Key,&lt;/P&gt;&lt;P&gt;Year_C as Year,&lt;/P&gt;&lt;P&gt;Month_C as Month&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;data\SAPMM\Projects\BSAD_ClosedItems_Header.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE (CalendarLinkage_Sales)&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Year as Year&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;10.193.2.14\qvapps\Live\InlinePurchases_2.xls&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is Sheet1$);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE (CalendarLinkage_Sales)&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&lt;A href="Purchasing Doc._EBELN"&gt;&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;Year_Pur as &lt;A href="https://community.qlik.com/Year"&gt;&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;Month_Pur as &lt;A href="https://community.qlik.com/Month"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;From&lt;/P&gt;&lt;P&gt;Data\SAPMM\Projects\COVP.qvd(Qvd);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Dec 2011 08:45:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar/m-p/296573#M496562</guid>
      <dc:creator />
      <dc:date>2011-12-14T08:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar/m-p/296574#M496563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;aliasing is the only way to avoid loosely coupled tables, there is a circular reference because of that qlikview create loosely coupled tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check your data modelling and rename the fields which causes circular reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do one thing attach your original qvw file so that I can check the data modelling. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Dec 2011 09:12:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar/m-p/296574#M496563</guid>
      <dc:creator />
      <dc:date>2011-12-14T09:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar/m-p/296575#M496564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi try this&lt;/P&gt;&lt;P&gt;Calendar:&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vDateMin = Num(MakeDate(2009,1,1));&amp;nbsp; &lt;/P&gt;&lt;P&gt;LET vDateMax = Floor(MonthEnd(Today()));&amp;nbsp; &lt;/P&gt;&lt;P&gt;LET vDateToday = Num(Today());&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TempCalendar:&amp;nbsp; &lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;$(vDateMin) + RowNo() - 1 AS DateNumber,&amp;nbsp; &lt;/P&gt;&lt;P&gt;Date($(vDateMin) + RowNo() - 1) AS TempDate&amp;nbsp; &lt;/P&gt;&lt;P&gt;AUTOGENERATE 1&amp;nbsp; &lt;/P&gt;&lt;P&gt;WHILE $(vDateMin)+IterNo()-1&amp;lt;= $(vDateMax);&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Calendar:&amp;nbsp; &lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;Date(TempDate) AS CalendarDate,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Standard Date Objects&lt;/P&gt;&lt;P&gt;Day(TempDate) AS CalendarDayOfMonth,&amp;nbsp; &lt;/P&gt;&lt;P&gt;WeekDay(TempDate) AS CalendarDayName,&amp;nbsp; &lt;/P&gt;&lt;P&gt;Week(TempDate) AS CalendarWeekOfYear,&amp;nbsp; &lt;/P&gt;&lt;P&gt;Month(TempDate) AS CalendarMonthName,&amp;nbsp; &lt;/P&gt;&lt;P&gt;'Q' &amp;amp; Ceil(Month(TempDate)/3) AS CalendarQuarter,&amp;nbsp; &lt;/P&gt;&lt;P&gt;Year(TempDate) AS CalendarYear,&amp;nbsp; &lt;/P&gt;&lt;P&gt;Resident TempCalender Order By TempDate ASC;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Dec 2011 09:14:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar/m-p/296575#M496564</guid>
      <dc:creator>rohit214</dc:creator>
      <dc:date>2011-12-14T09:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar/m-p/296576#M496565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have a personal email address?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Dec 2011 09:32:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar/m-p/296576#M496565</guid>
      <dc:creator />
      <dc:date>2011-12-14T09:32:46Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar/m-p/296577#M496566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;send it to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-email-small" href="mailto:vijit_jindal@yahoo.com"&gt;vijit_jindal@yahoo.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Dec 2011 10:22:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar/m-p/296577#M496566</guid>
      <dc:creator />
      <dc:date>2011-12-14T10:22:22Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar/m-p/296578#M496567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After checking your data modelling I think problem is of synthetic table as there are more than one field common in &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Timesheetorders &amp;amp; forecast&lt;/STRONG&gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Cost centre&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Cost rates&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;year &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;key&lt;/STRONG&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;So rename the fields of forecast table something else except cost centre as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;forecast:&lt;/P&gt;&lt;P&gt;load &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;applymap&amp;nbsp; ('CostRateMap',[Cost Centre] &amp;amp; [Year],'unknown') &amp;amp; '\' &amp;amp; Year &amp;amp; '\' &amp;amp; [Cost Centre] &amp;amp; '\' &amp;amp; [User_Name] &amp;amp; '\' &amp;amp;&amp;nbsp; [Task Code] as Key1,&lt;/P&gt;&lt;P&gt;applymap&amp;nbsp; ('CostRateMap',[Cost Centre] &amp;amp; [Year],'unknown') as CostRates1,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Year] as year1&lt;/P&gt;&lt;P&gt;from qvdname;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And then apply master calender.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;note:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;link only one field of master calender with the calender linkage otherwise again synthetic table will form.&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Dec 2011 12:05:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar/m-p/296578#M496567</guid>
      <dc:creator />
      <dc:date>2011-12-14T12:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar/m-p/296579#M496568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the sync table help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do i need to include the primary key for each 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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let vStartDate= num(MakeDate(2010));&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;year(Date) as &lt;A href="Calendar Year"&gt;&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;Month(Date) as Calendar Month],&lt;/P&gt;&lt;P&gt;Day(Date) as Day,&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;CalendarLinkage_Sales:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;%InvoiceBillingDocument_Key,&lt;/P&gt;&lt;P&gt;Year_O as &lt;A href="Calendar Year"&gt;&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;Month_O as &lt;A href="Calendar Month"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;From&lt;/P&gt;&lt;P&gt;data\SAPMM\Projects\BSID_OpenItems_Header.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE (CalendarLinkage_Sales)&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;%InvoiceBillingDocument_Key,&lt;/P&gt;&lt;P&gt;Year_C as &lt;A href="Calendar Year"&gt;&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;Month_C as &lt;A href="Calendar Month"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;data\SAPMM\Projects\BSAD_ClosedItems_Header.qvd (qvd);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Dec 2011 12:38:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar/m-p/296579#M496568</guid>
      <dc:creator />
      <dc:date>2011-12-14T12:38:25Z</dc:date>
    </item>
  </channel>
</rss>

