<?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: How to Create Master Calendar ? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/2058656#M1223210</link>
    <description>&lt;P&gt;No matter how, I do appreciate your reply. I would check and mark as solution if feasible.&lt;/P&gt;</description>
    <pubDate>Mon, 10 Apr 2023 10:56:41 GMT</pubDate>
    <dc:creator>My_Rebecca</dc:creator>
    <dc:date>2023-04-10T10:56:41Z</dc:date>
    <item>
      <title>How to Create Master Calendar ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/103109#M759319</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;I am new to Qlikview&lt;/P&gt;&lt;P&gt;How to Create Master Calendar ?&lt;/P&gt;&lt;P&gt;Please Help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/103109#M759319</guid>
      <dc:creator>jonesbrown</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create Master Calendar ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/103110#M759320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;MasterCalendar:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;DateId as OrderDate,&lt;/P&gt;&lt;P&gt;week(DateId) as Week,&lt;/P&gt;&lt;P&gt;Year(DateId) as Year,&lt;/P&gt;&lt;P&gt;Month(DateId) as Month,&lt;/P&gt;&lt;P&gt;Day(DateId) as Day,&lt;/P&gt;&lt;P&gt;ApplyMap('QuarterMap',Month(DateId),null()) as Quarter,&lt;/P&gt;&lt;P&gt;week(weekstart(DateId)) &amp;amp; '-' &amp;amp; WeekYear(DateId) as WeekYr,&lt;/P&gt;&lt;P&gt;weekday(DateId) as WeekDay,&lt;/P&gt;&lt;P&gt;if(month(date(DateId))&amp;lt;4, year(date(DateId))-1983, year(date(DateId))-1982) As Period;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Generate a temp table of dates&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;mindate + Iterno() as DateId&lt;/P&gt;&lt;P&gt;While mindate + IterNO() &amp;lt;= maxdate;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Get the min and max dates from the field&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;min(FieldValue('OrderDate',recno())) - 1 as mindate,&lt;/P&gt;&lt;P&gt;max(FieldValue('OrderDate',recno())) as maxdate&lt;/P&gt;&lt;P&gt;Autogenerate FieldValueCount('OrderDate');&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2018 15:16:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/103110#M759320</guid>
      <dc:creator>m_woolf</dc:creator>
      <dc:date>2018-08-20T15:16:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create Master Calendar ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/103111#M759321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jones,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Master calendar is a table in a QlikView/Qlik Sense data model which generally contains &lt;/P&gt;&lt;P&gt;date related columns&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Procedure:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;1. &lt;/SPAN&gt;Extract the Minimum and Maximum dates from a date column in the fact table. From the existing table, you create min and max.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Min_Max:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Load &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Min(&amp;lt;Date Field&amp;gt;) as MinDate,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Max(Date Field) as MaxDate&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Resident &amp;lt;Table Name&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;2. &lt;/SPAN&gt;Populate all the dates between the min and max dates using peek function.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Let vMinDate = Peek('MinDate',0,'Min_Max');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Let vMaxDate = Peek('MaxDate',0,'Min_Max');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Note: after that drop Min_Max temporary table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;3. &lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Extract all the necessary date columns required for the dashboards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Pulling dates between Min date and MAx Date&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Master_Calendar:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Load *,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MonthName(DateField)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as MonthName,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; QuarterName(DateField)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as QuarterName,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; YearName(DateField)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as YearName,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Q'&amp;amp;Ceil(Month(DateField)/3) as Quarter,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year(DateField) as Year,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(DateField)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as Month,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WeekDay(DateField)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as WeekDay; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; etc....................&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;4. Associate the date column in the fact table to the date column in the master calendar.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;Date($(vMinDate) + IterNo() - 1)&amp;nbsp;&amp;nbsp;&amp;nbsp; as &amp;lt;DateField&amp;gt;&lt;/P&gt;&lt;P&gt;AutoGenerate 1&lt;/P&gt;&lt;P&gt;While $(vMinDate) + IterNo() - 1 &amp;lt;= $(vMaxDate);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is one of the processes for creating a master calendar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2018 15:22:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/103111#M759321</guid>
      <dc:creator>Gopi_E</dc:creator>
      <dc:date>2018-08-20T15:22:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create Master Calendar ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/103112#M759322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jones,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are a lot of posts and blogs talking about "Master Calendar", &lt;SPAN lang="en"&gt;doing a simple search on google you will find the answer:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://qlikviewcookbook.com/2015/05/better-calendar-scripts/" title="https://qlikviewcookbook.com/2015/05/better-calendar-scripts/"&gt;https://qlikviewcookbook.com/2015/05/better-calendar-scripts/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/48693"&gt;Creating A Master Calendar&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=vJlXVaGogoc" title="https://www.youtube.com/watch?v=vJlXVaGogoc"&gt;QlikView Tutorial | Creating Master Calendar in QlikView | Data &amp;amp; Tools - YouTube&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2018 15:24:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/103112#M759322</guid>
      <dc:creator>jmmolero</dc:creator>
      <dc:date>2018-08-20T15:24:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create Master Calendar ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/103113#M759323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jones,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Master Calendar table is generally created to provide additional date fields like Quarter, Day, etc from an already existing date field. You can go through the below links for more information on creating master calendar, its advantages and many more.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.tutorialspoint.com/qlikview/qlikview_master_calendar.htm"&gt;https://www.tutorialspoint.com/qlikview/qlikview_master_calendar.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.learnallbi.com/master-calendar-in-qlikview/"&gt;http://www.learnallbi.com/master-calendar-in-qlikview/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A video on &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;how to create a Master Date Calendar in QlikView.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/thread/48693"&gt;https://community.qlik.com/thread/48693&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Advantages&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/thread/158524"&gt;https://community.qlik.com/thread/158524&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope these links give you the required information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sarat.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2018 01:59:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/103113#M759323</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-21T01:59:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create Master Calendar ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/103114#M759324</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;refer this link&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-3858"&gt;Master Calendar Generation Script&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Pooja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2018 10:22:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/103114#M759324</guid>
      <dc:creator>pooja_prabhu_n</dc:creator>
      <dc:date>2018-08-21T10:22:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create Master Calendar ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/103115#M759325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And, You've to consider Fiscal Year Start Month also, By that again need to do few more modifications on Master calendar scripting.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2018 14:45:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/103115#M759325</guid>
      <dc:creator>BalaBhaskar_Qlik</dc:creator>
      <dc:date>2018-08-21T14:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create Master Calendar ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/103116#M759326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-7094"&gt;Fiscal and Standard Calendar generation&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2018 14:48:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/103116#M759326</guid>
      <dc:creator>BalaBhaskar_Qlik</dc:creator>
      <dc:date>2018-08-21T14:48:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create Master Calendar ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/103117#M759327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This too:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/241347"&gt;Master Calendar for Fiscal Year starting April&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2018 14:48:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/103117#M759327</guid>
      <dc:creator>BalaBhaskar_Qlik</dc:creator>
      <dc:date>2018-08-21T14:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create Master Calendar ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/2058583#M1223204</link>
      <description>&lt;P&gt;Dear&amp;nbsp;@Anonymous&amp;nbsp;, I have listed the calendar, but still have the follwoing error. How to improve it?&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Count(distinct(GI_Delivery &amp;amp; [GI_Delivery Item]))/(7*8*(NetWorkDays('$(=vProductivity_MinDate)','$(=vProductivity_MaxDate)')&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;The total productivity (1.6) are divided by FY22 &amp;amp; FY23 (1.1+0.5).&amp;nbsp; Obviously this is wrong. The correct result should be almost equal to 1.6 no matter which year, quarter, month are filtered.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="My_Rebecca_0-1681104867265.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/104511iAE7FB82FF7DD5E29/image-size/medium?v=v2&amp;amp;px=400" role="button" title="My_Rebecca_0-1681104867265.png" alt="My_Rebecca_0-1681104867265.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="My_Rebecca_1-1681104867419.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/104513i4B0F78324A43872A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="My_Rebecca_1-1681104867419.png" alt="My_Rebecca_1-1681104867419.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="My_Rebecca_2-1681104867417.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/104512iB623E7695712DC49/image-size/medium?v=v2&amp;amp;px=400" role="button" title="My_Rebecca_2-1681104867417.png" alt="My_Rebecca_2-1681104867417.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Apr 2023 05:35:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/2058583#M1223204</guid>
      <dc:creator>My_Rebecca</dc:creator>
      <dc:date>2023-04-10T05:35:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create Master Calendar ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/2058585#M1223205</link>
      <description>&lt;P&gt;Hii&lt;/P&gt;
&lt;P&gt;//-------------------------------------------1 step-------------------------------------------------------//&lt;BR /&gt;// create table and extract min and max date &lt;BR /&gt;// define Min Max Date &lt;BR /&gt;min_max:&lt;BR /&gt;Load&lt;/P&gt;
&lt;P&gt;Min(Delivery_Date) as minDate,&lt;BR /&gt;Max(Delivery_Date) as maxDate&lt;/P&gt;
&lt;P&gt;Resident SALESDETAILS;&lt;/P&gt;
&lt;P&gt;//-------------------------------------------2 step-------------------------------------------------------//&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;// create variable and peek dates of min max from loaded table (min_max)&lt;BR /&gt;Let vMinDate = Peek('minDate',0,'min_max');&lt;/P&gt;
&lt;P&gt;Let vMaxDate = Peek('maxDate',0,'min_max');&lt;BR /&gt;&lt;BR /&gt;//after fetching min max dates from min_max --&amp;gt; no use of it so drop table &lt;BR /&gt;drop table min_max;&lt;/P&gt;
&lt;P&gt;//-------------------------------------------3 step-------------------------------------------------------//&lt;/P&gt;
&lt;P&gt;// creating master calendar &amp;amp; Extract all the necessary date columns required for the dashboards between min and max&lt;BR /&gt;Master_Calendar:&lt;BR /&gt;Load&lt;/P&gt;
&lt;P&gt;MonthName(Delivery_Date) as MonthName,&lt;BR /&gt;QuarterName(Delivery_Date) as QuarterName,&lt;BR /&gt;YearName(Delivery_Date) as YearName,&lt;BR /&gt;'Q'&amp;amp;Ceil(Month(Delivery_Date)/3) as Quarter,&lt;BR /&gt;Year(Delivery_Date) as Year,&lt;BR /&gt;Month(Delivery_Date) as Month,&lt;BR /&gt;WeekDay(Delivery_Date) as WeekDay,&lt;BR /&gt;Week(Delivery_Date) as Week,&lt;BR /&gt;Day(Delivery_Date) as Day,&lt;BR /&gt;Year(Delivery_Date) as yearDate,&lt;BR /&gt;'HY'&amp;amp;Ceil(Month(Delivery_Date)/6) as HalfYear&lt;BR /&gt;&lt;BR /&gt;;&lt;BR /&gt;//-------------------------------------------4 step-------------------------------------------------------//&lt;/P&gt;
&lt;P&gt;//looping--&amp;gt; from minimum date till maximum date rech&lt;BR /&gt;Load&lt;/P&gt;
&lt;P&gt;Date($(vMinDate) + IterNo() - 1) as Delivery_Date&lt;/P&gt;
&lt;P&gt;AutoGenerate 1&lt;/P&gt;
&lt;P&gt;While $(vMinDate) + IterNo() - 1 &amp;lt;= $(vMaxDate);&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;help user find answers ! don't forget to mark&amp;nbsp; a solution that work for you and click the&amp;nbsp;like button!&lt;/P&gt;</description>
      <pubDate>Mon, 10 Apr 2023 06:04:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/2058585#M1223205</guid>
      <dc:creator>Hania</dc:creator>
      <dc:date>2023-04-10T06:04:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create Master Calendar ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/2058656#M1223210</link>
      <description>&lt;P&gt;No matter how, I do appreciate your reply. I would check and mark as solution if feasible.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Apr 2023 10:56:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/2058656#M1223210</guid>
      <dc:creator>My_Rebecca</dc:creator>
      <dc:date>2023-04-10T10:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create Master Calendar ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/2059866#M1223256</link>
      <description>&lt;P&gt;Dear&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/224107"&gt;@Hania&lt;/a&gt;&amp;nbsp;, do your script support cross-period selection? For example, if I filter January and March, could this expression result is calculated from the total days of January &amp;amp; March (62 days), not from the beginning of January to March (90 days)? From your script, I do not see anything special about this point. As I have tried your similar method before, it does not work.&lt;/P&gt;
&lt;P&gt;My expression:&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Count(distinct(GI_Delivery &amp;amp; [GI_Delivery Item]))/(7*8*(NetWorkDays('$(=vProductivity_MinDate)','$(=vProductivity_MaxDate)')&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Apr 2023 05:59:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/2059866#M1223256</guid>
      <dc:creator>My_Rebecca</dc:creator>
      <dc:date>2023-04-13T05:59:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create Master Calendar ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/2059876#M1223257</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;You should add Filter for month &amp;amp; date picker as well based on your requirement so you can select your desirable months and if you want to view data based on specific Date/Random date you can visualize &amp;nbsp;with ease.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Hania_0-1681367307710.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/104790i3639911018A53161/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Hania_0-1681367307710.png" alt="Hania_0-1681367307710.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Hania_1-1681367457114.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/104791i6AE760F061A0FAF5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Hania_1-1681367457114.png" alt="Hania_1-1681367457114.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;As you can see it work based on selection.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Apr 2023 06:33:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/2059876#M1223257</guid>
      <dc:creator>Hania</dc:creator>
      <dc:date>2023-04-13T06:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create Master Calendar ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/2060409#M1223268</link>
      <description>&lt;P&gt;Dear&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/224107"&gt;@Hania&lt;/a&gt;&amp;nbsp;, thanks for your reply. Easy selecting month and date is not the problem, but expression is not easy to reach. please focus on my expression and look forward to your reply.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example, if I filter January and March, could this expression result is calculated from the total days of January &amp;amp; March (62 days), not from the beginning of January to March (90 days)? From your script, I do not see anything special about this point. As I have tried your similar method before, it does not work.&lt;/P&gt;
&lt;P&gt;My expression:&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Count(distinct(GI_Delivery &amp;amp; [GI_Delivery Item]))/(7*8*(NetWorkDays('$(=vProductivity_MinDate)','$(=vProductivity_MaxDate)')&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Apr 2023 07:36:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/2060409#M1223268</guid>
      <dc:creator>My_Rebecca</dc:creator>
      <dc:date>2023-04-14T07:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create Master Calendar ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/2425930#M1225409</link>
      <description>&lt;P&gt;How to create a master calendar and link it if I have two tables?&lt;/P&gt;
&lt;P&gt;One is the Order table which contains Ordered_Date and another is the Invoice table which contains GL_date. From these date columns, I extract the Year from each of the tables. Like from the order table, I extract the year from the order date and in the invoice table I extract the year from gl_date. Now I want to create a master calendar by linking the year from both tables and using the master calendar Year in my analysis. Is it possible? What will be the code if someone can tell me and How can I relate to the data manager or something?&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2024 13:38:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/2425930#M1225409</guid>
      <dc:creator>ss2q</dc:creator>
      <dc:date>2024-03-01T13:38:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create Master Calendar ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/2425935#M1225410</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/11572"&gt;@jonesbrown&lt;/a&gt;&amp;nbsp;This might help.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Design/Canonical-Date/ba-p/1463578" target="_blank"&gt;https://community.qlik.com/t5/Design/Canonical-Date/ba-p/1463578&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2024 13:53:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/2425935#M1225410</guid>
      <dc:creator>Ravi_Nagmal</dc:creator>
      <dc:date>2024-03-01T13:53:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create Master Calendar ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/2426194#M1225414</link>
      <description>&lt;P&gt;How about if I want make like this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;One is the Order table which contains Ordered_Date and another is the Invoice table which contains GL_date. From these date columns, I extract the Year from each of the tables. Like from the order table, I extract the year from the order date and in the invoice table I extract the year from gl_date. Now I want to create a master calendar by linking the year from both tables and using the master calendar Year in my analysis. Is it possible? What will be the code if someone can tell me and How can I relate to the data manager or something?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 02 Mar 2024 15:25:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/2426194#M1225414</guid>
      <dc:creator>ss2q</dc:creator>
      <dc:date>2024-03-02T15:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create Master Calendar ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/2427722#M1225428</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/288766"&gt;@ss2q&lt;/a&gt;&amp;nbsp;In that case you can use Link Table .&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Mar 2024 11:54:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Create-Master-Calendar/m-p/2427722#M1225428</guid>
      <dc:creator>Hania</dc:creator>
      <dc:date>2024-03-06T11:54:26Z</dc:date>
    </item>
  </channel>
</rss>

