<?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: Data for full calendar with weeks in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Data-for-full-calendar-with-weeks/m-p/1215471#M849920</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Mar 2017 04:22:22 GMT</pubDate>
    <dc:creator>rahulpawarb</dc:creator>
    <dc:date>2017-03-20T04:22:22Z</dc:date>
    <item>
      <title>Data for full calendar with weeks</title>
      <link>https://community.qlik.com/t5/QlikView/Data-for-full-calendar-with-weeks/m-p/1215463#M849912</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 need a QVD file or some attachment with data for a calendar with weeks.&lt;/P&gt;&lt;P&gt;I don't have a database SQL in my server, so, I need load a calendar with future datas that I can used like a filter with all days for next years.&lt;/P&gt;&lt;P&gt;somebody help-me?&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/Data-for-full-calendar-with-weeks/m-p/1215463#M849912</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Data for full calendar with weeks</title>
      <link>https://community.qlik.com/t5/QlikView/Data-for-full-calendar-with-weeks/m-p/1215464#M849913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes you can&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load * From Table; // This is your table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And calendar table seems this with dummy data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P dir="ltr" style="color: #222222; font-family: arial, sans-serif; font-size: small;"&gt;&lt;STRONG&gt;LOAD Date(MinDate+IterNo()-1) as Date&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P dir="ltr" style="color: #222222; font-family: arial, sans-serif; font-size: small;"&gt;&lt;STRONG&gt;While MinDate+IterNo()-1 &amp;lt;= MaxDate;&amp;nbsp; &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;LOAD MakeDate(1986) as MinDate,&amp;nbsp; &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MakeDate(2060) as MaxDate&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;AutoGenerate 1;&lt;/STRONG&gt;&lt;/P&gt;&lt;P dir="ltr" style="color: #222222; font-family: arial, sans-serif; font-size: small;"&gt;&lt;/P&gt;&lt;P dir="ltr" style="color: #222222; font-family: arial, sans-serif; font-size: small;"&gt;Then Simply Concatenate with Calendar date to your fact Table date. Then we have access the year from 1986 to 2060&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Mar 2017 17:17:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-for-full-calendar-with-weeks/m-p/1215464#M849913</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-03-15T17:17:58Z</dc:date>
    </item>
    <item>
      <title>Re: Data for full calendar with weeks</title>
      <link>https://community.qlik.com/t5/QlikView/Data-for-full-calendar-with-weeks/m-p/1215465#M849914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or this using Weeks and full calendar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load DateField as DateField, Field1, Field2 from DataSource;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: small;"&gt;&lt;STRONG&gt;tabCalendar:&amp;nbsp; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #222222; font-size: small; font-family: arial, sans-serif;"&gt;LOAD *,&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #222222; font-size: small; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Day(Date) as Day,&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #222222; font-size: small; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WeekDay(Date) as WeekDay,&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #222222; font-size: small; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Week(Date) as Week,&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #222222; font-size: small; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WeekName(Date) as WeekName,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #222222; font-size: small; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(Date) as Month,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #222222; font-size: small; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MonthName(Date) as MonthName,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: small;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dual('Q'&amp;amp;Ceil(Month(Date)/3),&lt;/SPAN&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: small;"&gt;Ceil(Month(Date)/3)) as Quarter,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #222222; font-size: small; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Q'&amp;amp;Ceil(Month(Date)/3) &amp;amp; '-' &amp;amp; Year(Date) as QuarterYear,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #222222; font-size: small; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; QuarterName(Date) as QuarterName,&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #222222; font-size: small; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year(Date) as Year,&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #222222; font-size: small; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Day(Date) &amp;amp; '-' &amp;amp; Month(Date) as DayMonth,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #222222; font-size: small; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Week'&amp;amp;Ceil(Day(Date)/7) as WeekNum,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #222222; font-size: small; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WeekYear(Date) as WeekYear;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #222222; font-size: small; font-family: arial, sans-serif;"&gt;LOAD Date(MinDate+IterNo()-1) as &lt;SPAN style="font-size: 13.3333px; text-decoration: underline;"&gt;DateField&lt;/SPAN&gt;&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #222222; font-size: small; font-family: arial, sans-serif;"&gt;While MinDate+IterNo()-1 &amp;lt;= MaxDate;&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #222222; font-size: small; font-family: arial, sans-serif;"&gt;LOAD MakeDate(1986) as MinDate,&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #222222; font-size: small; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MakeDate(2060) as MaxDate&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: small;"&gt;&lt;STRONG&gt;AutoGenerate 1;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Mar 2017 17:19:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-for-full-calendar-with-weeks/m-p/1215465#M849914</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-03-15T17:19:48Z</dc:date>
    </item>
    <item>
      <title>Re: Data for full calendar with weeks</title>
      <link>https://community.qlik.com/t5/QlikView/Data-for-full-calendar-with-weeks/m-p/1215466#M849915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Milton:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can see this post. It is very similar to what you are looking for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-4400"&gt;Calendario Maestro para obtener todos los días transcurridos&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Mar 2017 17:21:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-for-full-calendar-with-weeks/m-p/1215466#M849915</guid>
      <dc:creator>vbarbera</dc:creator>
      <dc:date>2017-03-15T17:21:41Z</dc:date>
    </item>
    <item>
      <title>Re: Data for full calendar with weeks</title>
      <link>https://community.qlik.com/t5/QlikView/Data-for-full-calendar-with-weeks/m-p/1215467#M849916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want to use the code of Anil Babu Samineni, you have to make a small change. You have to change when you type "Date" with "DateField". It is an excellent solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Mar 2017 17:36:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-for-full-calendar-with-weeks/m-p/1215467#M849916</guid>
      <dc:creator>vbarbera</dc:creator>
      <dc:date>2017-03-15T17:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: Data for full calendar with weeks</title>
      <link>https://community.qlik.com/t5/QlikView/Data-for-full-calendar-with-weeks/m-p/1215468#M849917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Milton,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please refer the sample application along with MasterCalendar.QVD file attached herewith. Let us know if you have any queries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards!&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Mar 2017 18:29:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-for-full-calendar-with-weeks/m-p/1215468#M849917</guid>
      <dc:creator>rahulpawarb</dc:creator>
      <dc:date>2017-03-15T18:29:28Z</dc:date>
    </item>
    <item>
      <title>Re: Data for full calendar with weeks</title>
      <link>https://community.qlik.com/t5/QlikView/Data-for-full-calendar-with-weeks/m-p/1215469#M849918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you Saminemi!&lt;/P&gt;&lt;P&gt;But I'll use the MasterCalendar.QVD, but his answer will be very useful for other tasks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Mar 2017 17:27:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-for-full-calendar-with-weeks/m-p/1215469#M849918</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-18T17:27:22Z</dc:date>
    </item>
    <item>
      <title>Re: Data for full calendar with weeks</title>
      <link>https://community.qlik.com/t5/QlikView/Data-for-full-calendar-with-weeks/m-p/1215470#M849919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you, Pawar!&lt;/P&gt;&lt;P&gt;I'll use MasterCalendar.QVD for my application!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Milton Nakayama&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Mar 2017 17:29:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-for-full-calendar-with-weeks/m-p/1215470#M849919</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-18T17:29:48Z</dc:date>
    </item>
    <item>
      <title>Re: Data for full calendar with weeks</title>
      <link>https://community.qlik.com/t5/QlikView/Data-for-full-calendar-with-weeks/m-p/1215471#M849920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2017 04:22:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-for-full-calendar-with-weeks/m-p/1215471#M849920</guid>
      <dc:creator>rahulpawarb</dc:creator>
      <dc:date>2017-03-20T04:22:22Z</dc:date>
    </item>
  </channel>
</rss>

