<?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 Rolling 12 months flag in master calendar script? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Rolling-12-months-flag-in-master-calendar-script/m-p/562279#M209826</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am able to calculate YTD, PYTD, PFY and few other flags in mater calendar script.. but need some help to calculate Rolling 12 months flag..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As of today, R12 months flag should be set to 1 for months between Sept. 2012 and Aug. 2013&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can someone please help?!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Sep 2013 18:38:21 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-09-02T18:38:21Z</dc:date>
    <item>
      <title>Rolling 12 months flag in master calendar script?</title>
      <link>https://community.qlik.com/t5/QlikView/Rolling-12-months-flag-in-master-calendar-script/m-p/562279#M209826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am able to calculate YTD, PYTD, PFY and few other flags in mater calendar script.. but need some help to calculate Rolling 12 months flag..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As of today, R12 months flag should be set to 1 for months between Sept. 2012 and Aug. 2013&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can someone please help?!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Sep 2013 18:38:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rolling-12-months-flag-in-master-calendar-script/m-p/562279#M209826</guid>
      <dc:creator />
      <dc:date>2013-09-02T18:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 months flag in master calendar script?</title>
      <link>https://community.qlik.com/t5/QlikView/Rolling-12-months-flag-in-master-calendar-script/m-p/562280#M209827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;set the variable:&lt;/P&gt;&lt;P&gt;DateNum = Max(AsofDate)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rolling 12 Months:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Sum({&amp;lt;Year=, Month=,Quarter=, DateNum={'&amp;gt;=$(=(Num(MonthStart(DateNum,-11))))&amp;lt;=$(=(Num(DateNum)))'}&amp;gt;}Sumfield)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Sep 2013 18:51:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rolling-12-months-flag-in-master-calendar-script/m-p/562280#M209827</guid>
      <dc:creator>v_iyyappan</dc:creator>
      <dc:date>2013-09-02T18:51:12Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 months flag in master calendar script?</title>
      <link>https://community.qlik.com/t5/QlikView/Rolling-12-months-flag-in-master-calendar-script/m-p/562281#M209828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If((Date &amp;lt;= Today() &lt;/P&gt;&lt;P&gt;&amp;nbsp; and Date &amp;gt;= MonthStart(Today()-12)),1,0) AS Rolling12Months&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Sep 2013 18:58:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rolling-12-months-flag-in-master-calendar-script/m-p/562281#M209828</guid>
      <dc:creator>jjordaan</dc:creator>
      <dc:date>2013-09-02T18:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 months flag in master calendar script?</title>
      <link>https://community.qlik.com/t5/QlikView/Rolling-12-months-flag-in-master-calendar-script/m-p/562282#M209829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp; here is a complete timescript including R12;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Replace TimeField with your date see below and good luck.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*This script is created to be used as a add on to applications containing dates.&lt;/P&gt;&lt;P&gt;This script do not require any additional datasource.&lt;/P&gt;&lt;P&gt;This script makes it easier to calculate YTD in Layout.&lt;/P&gt;&lt;P&gt;The logic is based on mapping 1 or null to date intervals.&lt;/P&gt;&lt;P&gt;the timewizard in the layout can be used as well to achive similar result. */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Variables to set YTD and MTD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let StartDate = num(date(YearStart(AddMonths(Today(),-48,0)),'YYYYMMDD'));&lt;/P&gt;&lt;P&gt;Let EndDate = num(date(YearEnd(AddMonths(Today(),0,0)),'YYYYMMDD'));&lt;/P&gt;&lt;P&gt;Let CurrentDate=num(date(Today(),'YYYYMMDD'));&lt;/P&gt;&lt;P&gt;Let CurrentYear=Year(Today());&lt;/P&gt;&lt;P&gt;Let LY_YTD=num(AddMonths(Today(),-12,0));&lt;/P&gt;&lt;P&gt;Let DaysToEnd=Monthend(Today())-Today();&lt;/P&gt;&lt;P&gt;Let Timespan=Year(Today())-Year(Date($(StartDate)));&lt;/P&gt;&lt;P&gt;Let TimeField='YOUR DATE FIELD HERE';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Time:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; *,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year($(TimeField)) AS [Year],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month($(TimeField)) AS [Month],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; num(Week($(TimeField)),00) as [Week],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Day($(TimeField)) AS [Day],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; WeekDay($(TimeField)) AS [WeekDay],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year($(TimeField))&amp;amp;num(Month($(TimeField)),00) as [Year Month2],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if($(TimeField)&amp;lt;=$(CurrentDate),$(TimeField)) as Date2,// Dates until Current date, used for balance dates&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Date(Monthstart(Date),'MMM-YY') as [Year Month],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year($(TimeField))&amp;amp;num(Month($(TimeField)),00) as [Year Month],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Dual(WeekYear($(TimeField))&amp;amp;'W'&amp;amp;num(Week(Date),00),WeekYear(Date)&amp;amp;num(Week(Date),00)) as [Year Week],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dual(WeekYear($(TimeField))&amp;amp;'W'&amp;amp;num(Week($(TimeField)),00),WeekYear($(TimeField))&amp;amp;num(Week($(TimeField)),00)) as [Year Week2],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year($(TimeField))&amp;amp;num(Week($(TimeField)),00) as [Year Week],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dual('Q'&amp;amp;Num(Ceil(Num(Month($(TimeField)))/3)),Num(Ceil(NUM(Month($(TimeField)))/3),00)) as [Quarter],&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Calculation Flags&lt;/P&gt;&lt;P&gt;// All flags below can be used in expression for example:&lt;/P&gt;&lt;P&gt;// _YTD_TY, used in Expressions Sum([Purchase Qty]*_YTD_TY)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//&amp;nbsp; YEAR&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(InYear ($(TimeField), $(CurrentDate), -1),1) as _FULL_LY, // All Dates Last Year&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(InYear ($(TimeField), $(CurrentDate), 0),1) as _FULL_TY, // All Dates This Year&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(InYearToDate ($(TimeField), $(CurrentDate), 0),1) as _YTD_TY,&amp;nbsp; // All Dates to Date this Year&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // _YTD_TY, used in Expressions Ex. Sum(Sales*_YTD_TY)&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; if(InYearToDate ($(TimeField), $(CurrentDate), -1),1) as _YTD_LY,&amp;nbsp; // All Dates to Date Last Year&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // _YTD_LY, used in Expressions Ex. Sum(Sales*_YTD_LY)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//&amp;nbsp; Quarter&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(InQuarter ($(TimeField), $(CurrentDate), 0),1) as _FULL_TQ_TY, //&amp;nbsp; All Dates In Current Quarter this Year&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(InQuarter ($(TimeField), $(LY_YTD), 0),1) as _FULL_TQ_LY, //&amp;nbsp; All Dates In Current Quarter Last Year&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(InQuarter ($(TimeField),$(CurrentDate), -1),1) as _FULL_PRQ, //&amp;nbsp; All Dates In Previous Quarter&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(InQuarterToDate ($(TimeField), $(CurrentDate), 0),1) as _QTD_TY, //&amp;nbsp; All Dates In Current Quarter to Date this Year&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(InQuarterToDate ($(TimeField), $(LY_YTD), 0),1) as _QTD_LY, //&amp;nbsp; All Dates In Current Quarter to Date Last Year&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(InQuarterToDate ($(TimeField),$(CurrentDate), -1),1) as _PR_QTD, //&amp;nbsp; All Dates In Previous Quarter to Date&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;//&amp;nbsp; Month&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If( InMonth ($(TimeField), $(CurrentDate),0),1) as _FULL_TM_TY, // All Dates This Month This Year&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If( InMonth ($(TimeField), $(CurrentDate),-12),1) as _FULL_TM_LY, // All Dates This Month Last Year&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If( InMonth ($(TimeField), $(CurrentDate), -1),1) as _FULL_PRM, // All Dates Previous Month&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If( InMonthToDate ($(TimeField), $(CurrentDate),0),1) as _MTD_TY, // All Dates This Month To Date This Year&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If( InMonthToDate ($(TimeField), $(CurrentDate),-12),1) as _MTD_LY, // All Dates This Month To Date Last Year&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If( InMonthToDate ($(TimeField), $(CurrentDate), -1),1) as _PR_MTD, // All Dates Previous Month To Date&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;//&amp;nbsp; Week&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If( InWeek ($(TimeField), $(CurrentDate),0),1) as _FULL_TW_TY, // All Dates This Week This Year&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If( InWeek ($(TimeField), $(LY_YTD),0),1) as _FULL_TW_LY, // All Dates This Week Last Year&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If( InWeek ($(TimeField), $(CurrentDate), -1),1) as _FULL_PRW, // All Dates Previous Week&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If( InWeekToDate ($(TimeField), $(CurrentDate),0),1) as _WTD_TY, // All Dates This Week To Date This Year&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If( InWeekToDate ($(TimeField), $(CurrentDate), -1),1) as _PR_WTD, // All Dates Previous Week To Date&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;// Rolling&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If( $(TimeField) &amp;gt; addmonths($(CurrentDate),-12) and $(TimeField) &amp;lt;= Today(),1) as _R12, // Rolling 12&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If( $(TimeField) &amp;gt; addmonths($(CurrentDate),-2) and $(TimeField) &amp;lt;= Today(),1) as _R2, // Rolling 2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If( $(TimeField) &amp;gt; addmonths($(CurrentDate),-3) and $(TimeField) &amp;lt;= Today(),1) as _R3, // Rolling 3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If( $(TimeField) &amp;gt; addmonths($(CurrentDate),-6) and $(TimeField) &amp;lt;= Today(),1) as _R6, // Rolling 6&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If( $(TimeField) &amp;gt; addmonths($(CurrentDate),-24) and $(TimeField) &amp;lt;= addmonths($(CurrentDate),-12),1) as _R13_24;// Rolling 13 -24&lt;/P&gt;&lt;P&gt;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date($(StartDate)+(Iterno()-1),'YYYYMMDD') as $(TimeField)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Date, to be used as key feild to transactions&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Autogenerate 1&lt;/P&gt;&lt;P&gt;While Date($(StartDate)+(Iterno()-1)) &amp;lt;=Date($(EndDate))&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Sep 2013 19:49:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rolling-12-months-flag-in-master-calendar-script/m-p/562282#M209829</guid>
      <dc:creator />
      <dc:date>2013-09-02T19:49:34Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 months flag in master calendar script?</title>
      <link>https://community.qlik.com/t5/QlikView/Rolling-12-months-flag-in-master-calendar-script/m-p/562283#M209830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you everyone for quick assistance.. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Sep 2013 12:20:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rolling-12-months-flag-in-master-calendar-script/m-p/562283#M209830</guid>
      <dc:creator />
      <dc:date>2013-09-03T12:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 months flag in master calendar script?</title>
      <link>https://community.qlik.com/t5/QlikView/Rolling-12-months-flag-in-master-calendar-script/m-p/562284#M209831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I like this idea. Could you please upload a sample? Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 20:28:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rolling-12-months-flag-in-master-calendar-script/m-p/562284#M209831</guid>
      <dc:creator />
      <dc:date>2014-01-23T20:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 months flag in master calendar script?</title>
      <link>https://community.qlik.com/t5/QlikView/Rolling-12-months-flag-in-master-calendar-script/m-p/562285#M209832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;A href="https://community.qlik.com/qlik-users/87819"&gt;BRACOY01&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;Could you please let me know what should be the value for &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;TimeField &lt;/SPAN&gt;variable?&lt;/P&gt;&lt;P&gt;I have copied the expression of &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;CurrentDate &lt;/SPAN&gt;in &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;TimeField &lt;/SPAN&gt;and its not giving me correct result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please help me in here?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Punit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jul 2016 14:12:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rolling-12-months-flag-in-master-calendar-script/m-p/562285#M209832</guid>
      <dc:creator>punitpopli</dc:creator>
      <dc:date>2016-07-04T14:12:23Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 months flag in master calendar script?</title>
      <link>https://community.qlik.com/t5/QlikView/Rolling-12-months-flag-in-master-calendar-script/m-p/562286#M209833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Love the script. I am a Qlik newbie.&amp;nbsp;&amp;nbsp;&amp;nbsp; I have data were the last date will always be 1 quarter in the past.&amp;nbsp; So for instance Today is 11/01/2018 but the max date in the file is 6/30/2018.&amp;nbsp; I will get a new file in January of 2019 and the max date will then be 10/31/2018.&amp;nbsp;&amp;nbsp; I want to do a rolling 12 months based on the max date of my data and not today's date.&amp;nbsp; How would I modify your script&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Nov 2018 15:53:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rolling-12-months-flag-in-master-calendar-script/m-p/562286#M209833</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-11-01T15:53:13Z</dc:date>
    </item>
  </channel>
</rss>

