<?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: Rolling period table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Rolling-period-table/m-p/1128005#M917912</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the above. That work's well for the last available 12 months as you mention above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea on the expression if we wanted the last 12 months from max date i.e from today.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Shamit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 May 2016 00:51:39 GMT</pubDate>
    <dc:creator>shamitshah</dc:creator>
    <dc:date>2016-05-16T00:51:39Z</dc:date>
    <item>
      <title>Rolling period table</title>
      <link>https://community.qlik.com/t5/QlikView/Rolling-period-table/m-p/1128003#M917907</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 require help with rolling data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table 1 is the raw data. I created table 2 to show the rolling amounts with the help of information on the forum. This table is working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas on how I could create the third table which would show the latest rolling data by Product (basically 2 columns - Product and the latest Rolling Quantity).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Shamit&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/Rolling-period-table/m-p/1128003#M917907</guid>
      <dc:creator>shamitshah</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling period table</title>
      <link>https://community.qlik.com/t5/QlikView/Rolling-period-table/m-p/1128004#M917909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Some of the months are missing, do you want last 12 months from max date or any available last 12 months.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For last 12 months you can try this:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sum({&amp;lt;ShipDate = {"$(='&amp;gt;=' &amp;amp; Date(MonthStart(Max(ShipDate), -11)) &amp;amp; '&amp;lt;=' &amp;amp; Date(MonthEnd(Max(ShipDate), 0)))"}&amp;gt;}Quantity)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 May 2016 02:51:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rolling-period-table/m-p/1128004#M917909</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-05-13T02:51:35Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling period table</title>
      <link>https://community.qlik.com/t5/QlikView/Rolling-period-table/m-p/1128005#M917912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the above. That work's well for the last available 12 months as you mention above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea on the expression if we wanted the last 12 months from max date i.e from today.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Shamit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2016 00:51:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rolling-period-table/m-p/1128005#M917912</guid>
      <dc:creator>shamitshah</dc:creator>
      <dc:date>2016-05-16T00:51:39Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling period table</title>
      <link>https://community.qlik.com/t5/QlikView/Rolling-period-table/m-p/1128006#M917914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For 12 months from today, you can simply use this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Sum({&amp;lt;ShipDate = {"$(='&amp;gt;=' &amp;amp; Date(MonthStart(&lt;SPAN style="color: #ff0000;"&gt;Today()&lt;/SPAN&gt;, -11)) &amp;amp; '&amp;lt;=' &amp;amp; Date(MonthEnd(&lt;SPAN style="color: #ff0000;"&gt;Today()&lt;/SPAN&gt;, 0)))"}&amp;gt;}Quantity)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2016 09:40:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rolling-period-table/m-p/1128006#M917914</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-05-16T09:40:50Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling period table</title>
      <link>https://community.qlik.com/t5/QlikView/Rolling-period-table/m-p/1128007#M917917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Sunny!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2016 10:03:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rolling-period-table/m-p/1128007#M917917</guid>
      <dc:creator>shamitshah</dc:creator>
      <dc:date>2016-05-16T10:03:06Z</dc:date>
    </item>
  </channel>
</rss>

