<?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 Last year figures in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Last-year-figures/m-p/320656#M1178615</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This expression gives me the whole last year figures and what I'd like to get is the sales for the period depending on the month selection. For exemple, if i select april 2011, i' want to obtein the figures from january to april 2011.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Franck&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Feb 2012 07:22:26 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-02-27T07:22:26Z</dc:date>
    <item>
      <title>Last year figures</title>
      <link>https://community.qlik.com/t5/QlikView/Last-year-figures/m-p/320654#M1178613</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 use an expression to get current year cumulative figures which perfectly works :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum ({$&amp;lt;Year = {$(=max(Year))}, Month = {"&amp;lt;=$(=max({&amp;lt;Year={$(=max(Year))}&amp;gt;} Month))"}&amp;gt;} Sales)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd like to display last year same figures. The idea is when i select a month (april 2011 for exemple), I'd like to see sales from january to april 2011 (expression above) and sales from january to april 2010 and I can't figure out how to get this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks for yor help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Franck&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2012 06:45:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-year-figures/m-p/320654#M1178613</guid>
      <dc:creator />
      <dc:date>2012-02-27T06:45:06Z</dc:date>
    </item>
    <item>
      <title>Last year figures</title>
      <link>https://community.qlik.com/t5/QlikView/Last-year-figures/m-p/320655#M1178614</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 can use following&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum ({$&amp;lt;Year = {$(&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;=max(Year)-1&lt;/STRONG&gt;&lt;/SPAN&gt;)}, Month = {"&amp;lt;=$(=max({&amp;lt;Year={$(=max(Year))}&amp;gt;} Month))"}&amp;gt;} Sales)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will give you details of previous year.&lt;/P&gt;&lt;P&gt;Is it ok?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2012 06:55:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-year-figures/m-p/320655#M1178614</guid>
      <dc:creator />
      <dc:date>2012-02-27T06:55:11Z</dc:date>
    </item>
    <item>
      <title>Last year figures</title>
      <link>https://community.qlik.com/t5/QlikView/Last-year-figures/m-p/320656#M1178615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This expression gives me the whole last year figures and what I'd like to get is the sales for the period depending on the month selection. For exemple, if i select april 2011, i' want to obtein the figures from january to april 2011.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Franck&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2012 07:22:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-year-figures/m-p/320656#M1178615</guid>
      <dc:creator />
      <dc:date>2012-02-27T07:22:26Z</dc:date>
    </item>
    <item>
      <title>Last year figures</title>
      <link>https://community.qlik.com/t5/QlikView/Last-year-figures/m-p/320657#M1178616</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 the expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum ({$&amp;lt;Year = {$(&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;=max(Year)-1&lt;/STRONG&gt;&lt;/SPAN&gt;)}, Month = {"&amp;lt;=$(=max(Month))"}&amp;gt;} Sales)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This works if your month is in Numerice format.&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>Mon, 27 Feb 2012 08:03:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-year-figures/m-p/320657#M1178616</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2012-02-27T08:03:03Z</dc:date>
    </item>
    <item>
      <title>Last year figures</title>
      <link>https://community.qlik.com/t5/QlikView/Last-year-figures/m-p/320658#M1178617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jagan, thank you for your answer.&lt;/P&gt;&lt;P&gt;Unfortunately, the format of the month is MMM-YYY and your expression still gives me the whole last year sum of sales.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Franck&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2012 08:29:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-year-figures/m-p/320658#M1178617</guid>
      <dc:creator />
      <dc:date>2012-02-27T08:29:06Z</dc:date>
    </item>
    <item>
      <title>Last year figures</title>
      <link>https://community.qlik.com/t5/QlikView/Last-year-figures/m-p/320659#M1178618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If you have a date field then check with this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =sum ({$&amp;lt;Year = {$(&lt;SPAN style="font-size: 12px; text-decoration: underline;"&gt;&lt;STRONG style="font-size: 12px;"&gt;=max(Year)-1&lt;/STRONG&gt;&lt;/SPAN&gt;)},DataField={"&amp;gt;=MonthStart(Max(DateField),-12)"}, Month=}&amp;gt;} Sales)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;P&gt;Celambarasan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2012 08:34:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-year-figures/m-p/320659#M1178618</guid>
      <dc:creator>CELAMBARASAN</dc:creator>
      <dc:date>2012-02-27T08:34:11Z</dc:date>
    </item>
    <item>
      <title>Last year figures</title>
      <link>https://community.qlik.com/t5/QlikView/Last-year-figures/m-p/320660#M1178619</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;Arrive the month in Numeric format, it would be easier for you to calculate this type fo calculations.&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; *&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(Date(Date#(MonthFieldName, 'MMM-YYYY'), 'MM/DD/YYYY')) AS Month&lt;/P&gt;&lt;P&gt;FROM DataSource;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now use the above expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&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>Mon, 27 Feb 2012 08:35:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-year-figures/m-p/320660#M1178619</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2012-02-27T08:35:24Z</dc:date>
    </item>
    <item>
      <title>Last year figures</title>
      <link>https://community.qlik.com/t5/QlikView/Last-year-figures/m-p/320661#M1178620</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 can probably use the Month field instead of Month-Year to get the result. If you do not already have a month field (Jan,Feb....), you can create the month field by using month(YourDateFieldName) as Month in the script. Then use the expression that Jagan posted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As far as&amp;nbsp; month names are concerned, you could use an inline mapping table for mapping months with their corresponding names as follows....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Months_Map:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month, M_Name&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1, Jan&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2, Feb&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3, Mar&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4, Apr&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5, May&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 6, Jun&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 7, Jul&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 8, Aug&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 9, Sep&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 10, Oct&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 11, Nov&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 12, Dec&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Khaled.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2012 08:51:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-year-figures/m-p/320661#M1178620</guid>
      <dc:creator />
      <dc:date>2012-02-27T08:51:03Z</dc:date>
    </item>
    <item>
      <title>Last year figures</title>
      <link>https://community.qlik.com/t5/QlikView/Last-year-figures/m-p/320662#M1178621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your answers, but it still doesn't work. The big problem is that I can't do nothing with the script because I work with VPN connection and I can't access to the database.&lt;/P&gt;&lt;P&gt;Thanks anyway&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2012 15:16:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-year-figures/m-p/320662#M1178621</guid>
      <dc:creator />
      <dc:date>2012-02-27T15:16:43Z</dc:date>
    </item>
    <item>
      <title>Re: Last year figures</title>
      <link>https://community.qlik.com/t5/QlikView/Last-year-figures/m-p/320663#M1178622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By using partial reload, I could insert a numeric month field. Here is the code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Calendar]:&lt;/P&gt;&lt;P&gt;ADD LOAD *,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date(DAT_ADMIN) AS CalendarDate,&amp;nbsp; &lt;/P&gt;&lt;P&gt;Day(DAT_ADMIN) AS CalendarDay,&amp;nbsp; &lt;/P&gt;&lt;P&gt;WeekDay(DAT_ADMIN) AS CalendarDayName,&amp;nbsp; &lt;/P&gt;&lt;P&gt;Week(DAT_ADMIN) AS Week,&amp;nbsp; &lt;/P&gt;&lt;P&gt;Month(DAT_ADMIN) AS CalendarMonth,&amp;nbsp; &lt;/P&gt;&lt;P&gt;'Q' &amp;amp; Ceil(Month(DAT_ADMIN)/3) AS Quarter,&amp;nbsp; &lt;/P&gt;&lt;P&gt;Year(DAT_ADMIN) AS Year,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WeekName(DAT_ADMIN) as CalendarWeekNumberAndYear,&amp;nbsp; &lt;/P&gt;&lt;P&gt;MonthName(DAT_ADMIN) as Month,&amp;nbsp; &lt;/P&gt;&lt;P&gt;QuarterName(DAT_ADMIN) as CalendarQuarterMonthsAndYear,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DayStart(DAT_ADMIN) as CalendarDayStart,&amp;nbsp; &lt;/P&gt;&lt;P&gt;WeekStart(DAT_ADMIN) as CalendarWeekStart,&amp;nbsp; &lt;/P&gt;&lt;P&gt;MonthStart(DAT_ADMIN) as CalendarMonthStart,&amp;nbsp; &lt;/P&gt;&lt;P&gt;QuarterStart(DAT_ADMIN) as CalendarQuarterStart,&amp;nbsp; &lt;/P&gt;&lt;P&gt;YearStart(DAT_ADMIN) as CalendarYearStart,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DayEnd(DAT_ADMIN) as CalendarDayEnd,&amp;nbsp; &lt;/P&gt;&lt;P&gt;WeekEnd(DAT_ADMIN) as CalendarWeekEnd,&amp;nbsp; &lt;/P&gt;&lt;P&gt;MonthEnd(DAT_ADMIN) as CalendarMonthEnd,&amp;nbsp; &lt;/P&gt;&lt;P&gt;QuarterEnd(DAT_ADMIN) as CalendarQuarterEnd,&amp;nbsp; &lt;/P&gt;&lt;P&gt;YearEnd(DAT_ADMIN) as CalendarYearEnd,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'Q' &amp;amp; Ceil(Month(DAT_ADMIN)/3) &amp;amp; '/' &amp;amp; Year(DAT_ADMIN) AS CalendarQuarterAndYear,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Num(Month(DAT_ADMIN)) AS MonthNo,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Year(DAT_ADMIN) &amp;amp; '/' &amp;amp; 'Q' &amp;amp; Ceil(Month(DAT_ADMIN)/3) AS CalendarYearAndQuarter;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ADD LOAD date(fieldvalue('DAT_ADMIN',recno())) as DAT_ADMIN&lt;/P&gt;&lt;P&gt;AUTOGENERATE fieldvaluecount('DAT_ADMIN')&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Franck&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2012 16:01:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-year-figures/m-p/320663#M1178622</guid>
      <dc:creator />
      <dc:date>2012-02-27T16:01:41Z</dc:date>
    </item>
    <item>
      <title>Last year figures</title>
      <link>https://community.qlik.com/t5/QlikView/Last-year-figures/m-p/320664#M1178623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Try this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;=sum ({$&amp;lt;Year = {$(&lt;SPAN style="font-size: 12px; text-decoration: underline;"&gt;&lt;STRONG style="font-size: 12px;"&gt;=max(Year)-1&lt;/STRONG&gt;&lt;/SPAN&gt;)},&lt;STRONG style="font-size: 12px;"&gt;MonthNo&lt;/STRONG&gt;={"&amp;gt;$(=Max(&lt;STRONG style="font-size: 12px;"&gt;MonthNo&lt;/STRONG&gt;))"}, CalendarMonth=}&amp;gt;} Sales)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;P&gt;Celambarasan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2012 04:37:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-year-figures/m-p/320664#M1178623</guid>
      <dc:creator>CELAMBARASAN</dc:creator>
      <dc:date>2012-02-28T04:37:03Z</dc:date>
    </item>
    <item>
      <title>Last year figures</title>
      <link>https://community.qlik.com/t5/QlikView/Last-year-figures/m-p/320665#M1178624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jagan's expression works with a numeric month field. Thanks for your help guys !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2012 06:39:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-year-figures/m-p/320665#M1178624</guid>
      <dc:creator />
      <dc:date>2012-02-28T06:39:39Z</dc:date>
    </item>
    <item>
      <title>Re: Last year figures</title>
      <link>https://community.qlik.com/t5/QlikView/Last-year-figures/m-p/320666#M1178625</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;Close this discussion by selecting the correct answer, if it solves your issue.&amp;nbsp; It helps others to find the solution for same scenario.&amp;nbsp; &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, 28 Feb 2012 06:45:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-year-figures/m-p/320666#M1178625</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2012-02-28T06:45:55Z</dc:date>
    </item>
  </channel>
</rss>

