<?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: Scripting Current Year calendar(Year,Month,Quarter,MonthEndDate) from previous Year in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Scripting-Current-Year-calendar-Year-Month-Quarter-MonthEndDate/m-p/1681824#M593486</link>
    <description>&lt;P&gt;This should put you on the right track with things I believe:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/The-Master-Calendar/ba-p/1471527" target="_blank" rel="noopener"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/The-Master-Calendar/ba-p/1471527&lt;/A&gt;&lt;/P&gt;&lt;P&gt;If you wish to search further in this area for other posts, there are over 700, use the following link:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/bg-p/qlik-design-blog" target="_blank" rel="noopener"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/bg-p/qlik-design-blog&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
    <pubDate>Wed, 04 Mar 2020 21:24:50 GMT</pubDate>
    <dc:creator>Brett_Bleess</dc:creator>
    <dc:date>2020-03-04T21:24:50Z</dc:date>
    <item>
      <title>Scripting Current Year calendar(Year,Month,Quarter,MonthEndDate) from previous Year</title>
      <link>https://community.qlik.com/t5/QlikView/Scripting-Current-Year-calendar-Year-Month-Quarter-MonthEndDate/m-p/1672600#M593485</link>
      <description>&lt;P&gt;Hi friends,&lt;/P&gt;&lt;P&gt;I have an excel data which listed upto 2019(four fields YearNo,quarterNo,MonthEndDate,MonthNo). Require Qlikview Script for deriving Current Year calendar (YearNo,quarterNo,MonthEndDate,MonthNo) from year 2019(Need to derive 2020 Calendar from 2019).&lt;/P&gt;&lt;P&gt;Can anyone help me out regarding this? It would be helpful if you can post the script.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Hari&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 19:10:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scripting-Current-Year-calendar-Year-Month-Quarter-MonthEndDate/m-p/1672600#M593485</guid>
      <dc:creator>hariprasad_koya</dc:creator>
      <dc:date>2024-11-16T19:10:20Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting Current Year calendar(Year,Month,Quarter,MonthEndDate) from previous Year</title>
      <link>https://community.qlik.com/t5/QlikView/Scripting-Current-Year-calendar-Year-Month-Quarter-MonthEndDate/m-p/1681824#M593486</link>
      <description>&lt;P&gt;This should put you on the right track with things I believe:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/The-Master-Calendar/ba-p/1471527" target="_blank" rel="noopener"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/The-Master-Calendar/ba-p/1471527&lt;/A&gt;&lt;/P&gt;&lt;P&gt;If you wish to search further in this area for other posts, there are over 700, use the following link:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/bg-p/qlik-design-blog" target="_blank" rel="noopener"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/bg-p/qlik-design-blog&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2020 21:24:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scripting-Current-Year-calendar-Year-Month-Quarter-MonthEndDate/m-p/1681824#M593486</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2020-03-04T21:24:50Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting Current Year calendar(Year,Month,Quarter,MonthEndDate) from previous Year</title>
      <link>https://community.qlik.com/t5/QlikView/Scripting-Current-Year-calendar-Year-Month-Quarter-MonthEndDate/m-p/1681840#M593487</link>
      <description>&lt;P&gt;I'm not sure what you mean by "&lt;SPAN&gt;Script for deriving Current Year calendar ... from year 2019", but you don't need 2019 calendar to create 2020 calendar.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;As&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/14114"&gt;@Brett_Bleess&lt;/a&gt;&amp;nbsp; mention&amp;nbsp; you can look into articles on master calendar creation. The script sample below generates a calendar such as the one in your excel, but it is extended with current year (2020) calendar as well.&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;MonthCalendar:
LOAD
	Year(MonthEndDate) as YearNo,
	ceil(month(MonthEndDate)/3) as quarterNo,
	MonthEndDate,
	Month(MonthEndDate) as MonthNo;
LOAD 
	DayName(monthend(makedate(2012,1),IterNo()-1)) as MonthEndDate
AutoGenerate 1
While 
	monthend(makedate(2012,1),IterNo()-1) &amp;lt; YearStart(today(),1);&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 04 Mar 2020 21:22:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scripting-Current-Year-calendar-Year-Month-Quarter-MonthEndDate/m-p/1681840#M593487</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2020-03-04T21:22:18Z</dc:date>
    </item>
  </channel>
</rss>

