<?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: Set Analysis for last 13 months of Data in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Set-Analysis-for-last-13-months-of-Data/m-p/692222#M1066735</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Manish, This was working..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Sep 2014 14:37:41 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-09-03T14:37:41Z</dc:date>
    <item>
      <title>Set Analysis for last 13 months of Data</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-for-last-13-months-of-Data/m-p/692213#M1066726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attached his the file which contains 3 years of data, i want to build a LINE chart via set analysis which shows last 13 months of Amount as of today. Please any one can help me on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankit Month&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2014 15:00:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-for-last-13-months-of-Data/m-p/692213#M1066726</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-02T15:00:15Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis for last 13 months of Data</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-for-last-13-months-of-Data/m-p/692214#M1066727</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;You first need to make sure you create a true date when you load the data into QlikView. Having a true date field always makes working with the data in expressions much easier. You script would be something like this:&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; Year,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; date#('01/' &amp;amp; Month &amp;amp; '/' &amp;amp; Year, 'DD/MMM/YYYY')&amp;nbsp; AS Date,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Amount&lt;/P&gt;&lt;P&gt;From ........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With this loaded you can then use the below set analysis to get the last 13 months (assuming you are including this month)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum({&amp;lt;Date = {"&amp;gt;=$(addmonths(monthstart(today()), -12) &amp;lt;=$(today())"}&amp;gt;} Amount)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2014 15:08:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-for-last-13-months-of-Data/m-p/692214#M1066727</guid>
      <dc:creator />
      <dc:date>2014-09-02T15:08:08Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis for last 13 months of Data</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-for-last-13-months-of-Data/m-p/692215#M1066728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do some changes in your script...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp; Year,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Date#(Month,'MMM') as Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Date(Date#(Month,'MMM'),'MM') as NumMonth,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Year&amp;amp;Date(Date#(Month,'MMM'),'MM') as YearMonth,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Amount&lt;/P&gt;&lt;P&gt;Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;&amp;nbsp; Year, Month, Amount&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2012, Jan, 20000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2012, Feb, 30000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2012, Mar, 40000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2012, Apr, 50000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2012, May, 60000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2012, Jun, 70000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2012, Jul, 80000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2012, Aug, 90000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2012, Sep, 100000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2012, Oct, 110000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2012, Nov, 120000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2012, Dec, 130000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2013, Jan, 140000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2013, Feb, 150000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2013, Mar, 30000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2013, Apr, 60000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2013, May, 90000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2013, Jun, 120000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2013, Jul, 150000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2013, Aug, 180000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2013, Sep, 210000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2013, Oct, 240000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2013, Nov, 270000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2013, Dec, 300000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2014, Jan, 330000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2014, Feb, 360000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2014, Mar, 390000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2014, Apr, 420000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2014, May, 450000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2014, Jun, 480000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2014, Jul, 510000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2014, Aug, 540000&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now create a line chart&lt;/P&gt;&lt;P&gt;Dimension &lt;/P&gt;&lt;P&gt;YearMonth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expression&lt;/P&gt;&lt;P&gt;=SUM({&amp;lt;YearMonth = {"&amp;lt;=$(=Date(MonthStart(Today()),'YYYYMM')),'YYYYMM'))&amp;gt;=$(=Date(MonthStart(Today(),-12),'YYYYMM'))"}&amp;gt;}Amount)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2014 15:17:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-for-last-13-months-of-Data/m-p/692215#M1066728</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-09-02T15:17:58Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis for last 13 months of Data</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-for-last-13-months-of-Data/m-p/692216#M1066729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ankit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAd&lt;/P&gt;&lt;P&gt;*,&lt;/P&gt;&lt;P&gt;MakeDate(Year, Match(Month,'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec')) AS Date&lt;/P&gt;&lt;P&gt;FROM DataSource;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Sum({&amp;lt;Year=, Month=, Date={'&amp;gt;=$(=MonthStart(Max(Date), -12))&amp;lt;=$(=Max(Date))'}&amp;gt;} Amount)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2014 15:21:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-for-last-13-months-of-Data/m-p/692216#M1066729</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-09-02T15:21:46Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis for last 13 months of Data</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-for-last-13-months-of-Data/m-p/692217#M1066730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the Answer's..&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem is, i have given the sample data but i have complex calculation for the amount. As i have a fiscal Year and Month is it not possible i can write a set analysis in the DIMENSION for showing the last 13 Fiscal month&amp;amp;Year. So my DIMENSION would restrict the 13 months and in the Expression i can write to calculate the Amount Logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry i didn't mention this earlier.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2014 15:25:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-for-last-13-months-of-Data/m-p/692217#M1066730</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-02T15:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis for last 13 months of Data</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-for-last-13-months-of-Data/m-p/692218#M1066731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thanks for the Answer's.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;My problem is, i have given the sample data but i have complex calculation for the amount. As i have a fiscal Year and Month is it not possible i can write a set analysis in the DIMENSION for showing the last 13 Fiscal month&amp;amp;Year. So my DIMENSION would restrict the 13 months and in the Expression i can write to calculate the Amount Logic. As i want to show the data on Fiscal Month and Year.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Sorry i didn't mention this earlier.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2014 15:28:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-for-last-13-months-of-Data/m-p/692218#M1066731</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-02T15:28:01Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis for last 13 months of Data</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-for-last-13-months-of-Data/m-p/692219#M1066732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ankit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to create an IDPeriod 'yyyymm' (Year &amp;amp; Month) and it resolves your problems.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;C y,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2014 15:30:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-for-last-13-months-of-Data/m-p/692219#M1066732</guid>
      <dc:creator>sorrakis01</dc:creator>
      <dc:date>2014-09-02T15:30:47Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis for last 13 months of Data</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-for-last-13-months-of-Data/m-p/692220#M1066733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Provide some sample data otherwise difficult to understand your actual data model..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2014 15:31:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-for-last-13-months-of-Data/m-p/692220#M1066733</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-09-02T15:31:49Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis for last 13 months of Data</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-for-last-13-months-of-Data/m-p/692221#M1066734</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;Try creating the Fiscal Calendar using this link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/docs/DOC-7094" style="font-weight: bold; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3778c7;"&gt;Fiscal and Standard Calendar generation&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2014 15:32:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-for-last-13-months-of-Data/m-p/692221#M1066734</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-09-02T15:32:38Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis for last 13 months of Data</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-for-last-13-months-of-Data/m-p/692222#M1066735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Manish, This was working..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Sep 2014 14:37:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-for-last-13-months-of-Data/m-p/692222#M1066735</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-03T14:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis for last 13 months of Data</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-for-last-13-months-of-Data/m-p/692223#M1066736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;THANK YOU Every one, Different way of calculation was useful in lot of ways&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Sep 2014 14:38:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-for-last-13-months-of-Data/m-p/692223#M1066736</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-03T14:38:27Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis for last 13 months of Data</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-for-last-13-months-of-Data/m-p/692224#M1066737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ankit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think this is the best expression, even if you select year or month this will always show last 13 months amount&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;=SUM({&amp;lt;Year=, Month, YearMonth = {"&amp;lt;=$(=Date(MonthStart(Today()),'YYYYMM')),'YYYYMM'))&amp;gt;=$(=Date(MonthStart(Today(),-12),'YYYYMM'))"}&amp;gt;}Amount)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Hope this helps you.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Jagan.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Sep 2014 15:17:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-for-last-13-months-of-Data/m-p/692224#M1066737</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-09-03T15:17:11Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis for last 13 months of Data</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-for-last-13-months-of-Data/m-p/692225#M1066738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ankit,&lt;/P&gt;&lt;P&gt;What Jagan is saying is right... The formula I have provided need to be edited by using ByPASS of certain fields..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Year=, Month = ,&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Sep 2014 15:18:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-for-last-13-months-of-Data/m-p/692225#M1066738</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-09-03T15:18:44Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis for last 13 months of Data</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-for-last-13-months-of-Data/m-p/692226#M1066739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Jagan..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Sep 2014 17:35:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-for-last-13-months-of-Data/m-p/692226#M1066739</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-03T17:35:50Z</dc:date>
    </item>
  </channel>
</rss>

