<?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: Pick rolling 12 months in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Pick-rolling-12-months/m-p/15214#M779002</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yeah..if possible in where clause..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Apr 2018 19:15:15 GMT</pubDate>
    <dc:creator>apthansh</dc:creator>
    <dc:date>2018-04-10T19:15:15Z</dc:date>
    <item>
      <title>Pick rolling 12 months</title>
      <link>https://community.qlik.com/t5/QlikView/Pick-rolling-12-months/m-p/15212#M779000</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;I have data as attached..I want this to pick Rolling 12 months..I want to pick rolling 12 month data..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex: From the below screenshot I want to pick data from 2017 - Mar to 2018 -Feb.&lt;/P&gt;&lt;P&gt;Next month when 2018 - Mar gets added I want to show data from 2017 - Apr to 2018 - Mar. &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/Pick-rolling-12-months/m-p/15212#M779000</guid>
      <dc:creator>apthansh</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Pick rolling 12 months</title>
      <link>https://community.qlik.com/t5/QlikView/Pick-rolling-12-months/m-p/15213#M779001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the script?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Apr 2018 19:12:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pick-rolling-12-months/m-p/15213#M779001</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-04-10T19:12:35Z</dc:date>
    </item>
    <item>
      <title>Re: Pick rolling 12 months</title>
      <link>https://community.qlik.com/t5/QlikView/Pick-rolling-12-months/m-p/15214#M779002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yeah..if possible in where clause..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Apr 2018 19:15:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pick-rolling-12-months/m-p/15214#M779002</guid>
      <dc:creator>apthansh</dc:creator>
      <dc:date>2018-04-10T19:15:15Z</dc:date>
    </item>
    <item>
      <title>Re: Pick rolling 12 months</title>
      <link>https://community.qlik.com/t5/QlikView/Pick-rolling-12-months/m-p/15215#M779003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One possible way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;Table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;LOAD Year, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Posting Period],&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; year(MakeDate(Year)) as ExpenseYear,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; month(MakeDate(2000,[Posting Period])) as ExpenseMonth,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(MakeDate(Year, [Posting Period]), 'YYYY-MMM') as ExpenseMonthYear&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; year(MakeDate(Year)) &amp;amp; '-'&amp;amp;&amp;nbsp;&amp;nbsp; month(MakeDate(2000,[Posting Period])) as ExpenseMonthYear&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;FROM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;[ExpenseS.txt.xlsx]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;(ooxml, embedded labels, table is Sheet1);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;Right Join (Table)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;LOAD MonthStart(ExpenseMonthYear, IterNo()) as ExpenseMonthYear&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;While IterNo() &amp;lt;= 12;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;LOAD MonthStart(Max(ExpenseMonthYear), -12) as ExpenseMonthYear&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;Resident Table;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Apr 2018 19:20:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pick-rolling-12-months/m-p/15215#M779003</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-04-10T19:20:47Z</dc:date>
    </item>
    <item>
      <title>Re: Pick rolling 12 months</title>
      <link>https://community.qlik.com/t5/QlikView/Pick-rolling-12-months/m-p/15216#M779004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if not just filtering in the fields itself is ok too..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Apr 2018 19:21:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pick-rolling-12-months/m-p/15216#M779004</guid>
      <dc:creator>apthansh</dc:creator>
      <dc:date>2018-04-10T19:21:14Z</dc:date>
    </item>
    <item>
      <title>Re: Pick rolling 12 months</title>
      <link>https://community.qlik.com/t5/QlikView/Pick-rolling-12-months/m-p/15217#M779005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ypu are awesome.Thank you&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2018 02:03:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pick-rolling-12-months/m-p/15217#M779005</guid>
      <dc:creator>apthansh</dc:creator>
      <dc:date>2018-04-11T02:03:22Z</dc:date>
    </item>
  </channel>
</rss>

