<?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: Linking two calendars into a master calendar in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Linking-two-calendars-into-a-master-calendar/m-p/58478#M9731</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No Problem at all, Please mark some helpful which met your requirement ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 May 2018 00:35:38 GMT</pubDate>
    <dc:creator>Anil_Babu_Samineni</dc:creator>
    <dc:date>2018-05-09T00:35:38Z</dc:date>
    <item>
      <title>Linking two calendars into a master calendar</title>
      <link>https://community.qlik.com/t5/QlikView/Linking-two-calendars-into-a-master-calendar/m-p/58466#M9719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good day All, I have two calendars which I intend on merging into a master calendar so that I can avoid having synthentic keys in my data model. The first calendar has the hire date of an employee and the second calendar has the salesdate of each employee and I initially looked at this article&lt;A href="https://community.qlik.com/qlik-blogpost/3585"&gt;Canonical Date&lt;/A&gt;but there is no fine grain table between the two calendars so I was wondering whether there might be an alternative to doing this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is my code below I cut it down to make things alot easier to read:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Employee:&lt;/P&gt;&lt;P&gt;LOAD [Employee ID], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [First name], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Last name], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Hire date], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Temp worker], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Position ID], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Department ID], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Office ID], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Manager ID]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Employee);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Employee_Cal:&lt;/P&gt;&lt;P&gt;LOAD Date([Hire date]) as [Hire date],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year([Hire date]) as Year,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Q' &amp;amp; Ceil(Month([Hire date])/3) as Quarter,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month([Hire date]) as Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Day([Hire date]) as Day,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Week([Hire date]) as Week;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD Date(MinDate + Iterno() -1) as [Hire date]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; While(MinDate + Iterno() -1)&amp;lt;=Num(MaxDate);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD Min([Hire date]) as MinDate,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Max([Hire date]) as MaxDate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Resident Employee;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sales:&lt;/P&gt;&lt;P&gt;LOAD [Sales Date], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Employee ID], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Sales Amount]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sales);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sales_Cal:&lt;/P&gt;&lt;P&gt;LOAD Date([Sales Date]) as [Sales Date],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year([Sales Date]) as Year,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Q' &amp;amp; Ceil(Month([Sales Date])/3) as Quarter,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month([Sales Date]) as Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Day([Sales Date]) as Day,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Week([Sales Date]) as Week;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD Date(MinDate + Iterno() -1) as [Sales Date]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; While(MinDate + Iterno() -1)&amp;lt;=Num(MaxDate);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD Min([Sales Date]) as MinDate,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Max([Sales Date]) as MaxDate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Resident Sales;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now how do I get the Employee+Cal and Sales_cal into a master calendar in this case?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 May 2018 04:36:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Linking-two-calendars-into-a-master-calendar/m-p/58466#M9719</guid>
      <dc:creator>kaygee28</dc:creator>
      <dc:date>2018-05-05T04:36:17Z</dc:date>
    </item>
    <item>
      <title>Re: Linking two calendars into a master calendar</title>
      <link>https://community.qlik.com/t5/QlikView/Linking-two-calendars-into-a-master-calendar/m-p/58467#M9720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you share those 2 excel files also? we will look into this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 May 2018 06:11:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Linking-two-calendars-into-a-master-calendar/m-p/58467#M9720</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2018-05-05T06:11:18Z</dc:date>
    </item>
    <item>
      <title>Re: Linking two calendars into a master calendar</title>
      <link>https://community.qlik.com/t5/QlikView/Linking-two-calendars-into-a-master-calendar/m-p/58468#M9721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anil, thanks for the response please see attached two files.&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>Sat, 05 May 2018 12:35:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Linking-two-calendars-into-a-master-calendar/m-p/58468#M9721</guid>
      <dc:creator>kaygee28</dc:creator>
      <dc:date>2018-05-05T12:35:43Z</dc:date>
    </item>
    <item>
      <title>Re: Linking two calendars into a master calendar</title>
      <link>https://community.qlik.com/t5/QlikView/Linking-two-calendars-into-a-master-calendar/m-p/58469#M9722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does this helps?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Employee:&lt;/P&gt;&lt;P&gt;LOAD [Employee ID],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [First name],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Last name],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Hire date] as DateField,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Temp worker],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Position ID],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Department ID],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Employee' as Flag,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Office ID],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Manager ID]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[..\QlikView Assessment.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Employee);&lt;/P&gt;&lt;P&gt;Join&lt;/P&gt;&lt;P&gt;Sales:&lt;/P&gt;&lt;P&gt;LOAD [Sales Date] as DateField,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Employee ID],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Sales' as Flag,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Sales Amount]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[..\QlikView Assessment.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sales);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Calendar:&lt;/P&gt;&lt;P&gt;LOAD Date(DateField) as DateField,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year(DateField) as Year,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Q' &amp;amp; Ceil(Month(DateField)/3) as Quarter,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(DateField) as Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Day(DateField) as Day,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Week(DateField) as Week;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD Date(MinDate + Iterno() -1) as DateField&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; While(MinDate + Iterno() -1)&amp;lt;=Num(MaxDate);&lt;/P&gt;&lt;P&gt;LOAD Min(DateField) as MinDate,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Max(DateField) as MaxDate&lt;/P&gt;&lt;P&gt;Resident Employee;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 May 2018 13:20:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Linking-two-calendars-into-a-master-calendar/m-p/58469#M9722</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2018-05-05T13:20:18Z</dc:date>
    </item>
    <item>
      <title>Re: Linking two calendars into a master calendar</title>
      <link>https://community.qlik.com/t5/QlikView/Linking-two-calendars-into-a-master-calendar/m-p/58470#M9723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anil this works perfectly all I did afterwards was to create a listbox that flagged which table I was referring to and then created an alternate state for different pages, this was so helpful I really appreciate it!! &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 May 2018 14:01:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Linking-two-calendars-into-a-master-calendar/m-p/58470#M9723</guid>
      <dc:creator>kaygee28</dc:creator>
      <dc:date>2018-05-05T14:01:03Z</dc:date>
    </item>
    <item>
      <title>Re: Linking two calendars into a master calendar</title>
      <link>https://community.qlik.com/t5/QlikView/Linking-two-calendars-into-a-master-calendar/m-p/58471#M9724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anil one problem though it seems like the tables didn't map using the product key which is the Employee ID instead they used the DateField as a product key it seems, cause I can't match the employee names to the sales amounts or is it something else rather?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="sales.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/201589_sales.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 May 2018 17:31:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Linking-two-calendars-into-a-master-calendar/m-p/58471#M9724</guid>
      <dc:creator>kaygee28</dc:creator>
      <dc:date>2018-05-05T17:31:20Z</dc:date>
    </item>
    <item>
      <title>Re: Linking two calendars into a master calendar</title>
      <link>https://community.qlik.com/t5/QlikView/Linking-two-calendars-into-a-master-calendar/m-p/58472#M9725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may select Sales from Flag filter and check data retrieves correct or not?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 06 May 2018 09:48:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Linking-two-calendars-into-a-master-calendar/m-p/58472#M9725</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2018-05-06T09:48:09Z</dc:date>
    </item>
    <item>
      <title>Re: Linking two calendars into a master calendar</title>
      <link>https://community.qlik.com/t5/QlikView/Linking-two-calendars-into-a-master-calendar/m-p/58473#M9726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anil unfortunately not, so not sure what might be needed here?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="sales2.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/201610_sales2.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 06 May 2018 12:25:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Linking-two-calendars-into-a-master-calendar/m-p/58473#M9726</guid>
      <dc:creator>kaygee28</dc:creator>
      <dc:date>2018-05-06T12:25:45Z</dc:date>
    </item>
    <item>
      <title>Re: Linking two calendars into a master calendar</title>
      <link>https://community.qlik.com/t5/QlikView/Linking-two-calendars-into-a-master-calendar/m-p/58474#M9727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is no data for that, Could be the reason behind we are not getting data for First and Last Names ??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 May 2018 15:48:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Linking-two-calendars-into-a-master-calendar/m-p/58474#M9727</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2018-05-07T15:48:07Z</dc:date>
    </item>
    <item>
      <title>Re: Linking two calendars into a master calendar</title>
      <link>https://community.qlik.com/t5/QlikView/Linking-two-calendars-into-a-master-calendar/m-p/58475#M9728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anil there actually is cause that employee ID which is 1 in the image I attached above is available in both tables.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 May 2018 17:12:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Linking-two-calendars-into-a-master-calendar/m-p/58475#M9728</guid>
      <dc:creator>kaygee28</dc:creator>
      <dc:date>2018-05-07T17:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: Linking two calendars into a master calendar</title>
      <link>https://community.qlik.com/t5/QlikView/Linking-two-calendars-into-a-master-calendar/m-p/58476#M9729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you check this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Employee:&lt;/P&gt;&lt;P&gt;LOAD [Employee ID],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [First name],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Last name],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Hire date] as DateField,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Temp worker],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Position ID],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Department ID],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Employee' as Flag,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Office ID],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Manager ID]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[..\QlikView Assessment.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Employee);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sales:&lt;/P&gt;&lt;P&gt;LOAD [Sales Date] as DateField,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Employee ID],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Sales' as Flag,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Sales Amount]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[..\QlikView Assessment.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sales);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Calendar:&lt;/P&gt;&lt;P&gt;LOAD Date(DateField) as DateField,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year(DateField) as Year,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Q' &amp;amp; Ceil(Month(DateField)/3) as Quarter,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(DateField) as Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Day(DateField) as Day,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Week(DateField) as Week;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;LOAD Date(MinDate + Iterno() -1) as DateField&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; While(MinDate + Iterno() -1)&amp;lt;=Num(MaxDate);&lt;/P&gt;&lt;P&gt;LOAD Min(DateField) as MinDate,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Max(DateField) as MaxDate&lt;/P&gt;&lt;P&gt;Resident Employee;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LinkTable:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD AutoNumber([Employee ID] &amp;amp; '|' &amp;amp; DateField &amp;amp; '|' &amp;amp; Flag) as Key, [Employee ID], DateField, Flag Resident Employee;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Concatenate(LinkTable)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD AutoNumber([Employee ID] &amp;amp; '|' &amp;amp; DateField &amp;amp; '|' &amp;amp; Flag) as Key,[Employee ID], DateField, Flag Resident Sales;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DROP Fields [Employee ID], DateField, Flag From Employee;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2018 00:33:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Linking-two-calendars-into-a-master-calendar/m-p/58476#M9729</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2018-05-08T00:33:58Z</dc:date>
    </item>
    <item>
      <title>Re: Linking two calendars into a master calendar</title>
      <link>https://community.qlik.com/t5/QlikView/Linking-two-calendars-into-a-master-calendar/m-p/58477#M9730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh I see what you did, I'm certainly learning a lot from here, this is straight genius from you Anil I don't even know what to say I'm so ecstatic thank you so much!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I understand completely what you did here.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2018 07:08:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Linking-two-calendars-into-a-master-calendar/m-p/58477#M9730</guid>
      <dc:creator>kaygee28</dc:creator>
      <dc:date>2018-05-08T07:08:53Z</dc:date>
    </item>
    <item>
      <title>Re: Linking two calendars into a master calendar</title>
      <link>https://community.qlik.com/t5/QlikView/Linking-two-calendars-into-a-master-calendar/m-p/58478#M9731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No Problem at all, Please mark some helpful which met your requirement ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2018 00:35:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Linking-two-calendars-into-a-master-calendar/m-p/58478#M9731</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2018-05-09T00:35:38Z</dc:date>
    </item>
  </channel>
</rss>

