<?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 How to calculate CurrentYearMonth vs PrevYearMonth sales(Growth) in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228938#M80905</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rikab&lt;/P&gt;&lt;P&gt;Sum(if(InYearToDate(TranDate,MAX(TranDate),0),sales)) / Sum(if(InYearToDate(TranDate,MAX(TranDate),-1),sales))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sunil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Oct 2010 13:02:13 GMT</pubDate>
    <dc:creator>sunil2288</dc:creator>
    <dc:date>2010-10-05T13:02:13Z</dc:date>
    <item>
      <title>How to calculate CurrentYearMonth vs PrevYearMonth sales(Growth)</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228933#M80900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I want to one report as shown below. In that everything is done except the growth. In growth what I want to do is, I want to calculate growth using the sale value of april,2010 to the sale value of april,2009.&lt;/P&gt;&lt;P&gt;When saying it looks simple but while doing finding it very difficult. Can some one please help me out.&lt;/P&gt;&lt;P&gt;If you feel passing the MonthName in the dimension is the problem then you can remove the MonthName and you can pass only the Month. I don't have issue with that. You can pass the month as well.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="error loading image" class="jive-image error-loading-image" src="https://community.qlik.com/legacyfs/online/-2514_sourceID:2514" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Oct 2010 11:31:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228933#M80900</guid>
      <dc:creator />
      <dc:date>2010-10-05T11:31:38Z</dc:date>
    </item>
    <item>
      <title>How to calculate CurrentYearMonth vs PrevYearMonth sales(Growth)</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228934#M80901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear pls Check attached example . It will solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Oct 2010 11:58:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228934#M80901</guid>
      <dc:creator>suniljain</dc:creator>
      <dc:date>2010-10-05T11:58:49Z</dc:date>
    </item>
    <item>
      <title>How to calculate CurrentYearMonth vs PrevYearMonth sales(Growth)</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228935#M80902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunil,&lt;/P&gt;&lt;P&gt;Thanks for the document. I had verified the same document previously. But that is not what I was looking for.&lt;/P&gt;&lt;P&gt;I want the same thing for all the months of year without selecting the year and month. As per the document it works only if we select some values but in my case without doing any selection it should show the expected result for all the months.&lt;/P&gt;&lt;P&gt;Kindly check and let me know if you have such document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Oct 2010 12:30:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228935#M80902</guid>
      <dc:creator />
      <dc:date>2010-10-05T12:30:25Z</dc:date>
    </item>
    <item>
      <title>How to calculate CurrentYearMonth vs PrevYearMonth sales(Growth)</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228936#M80903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rikab,&lt;/P&gt;&lt;P&gt;You can solve like this&lt;/P&gt;&lt;P&gt;Sum(if(InYearToDate(orderdate,maxorderdate,0),sales)) / Sum(if(InYearToDate(orderdate,maxorderdate,-1),sales))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check it out. Hope it may solve your prblm&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sunil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Oct 2010 12:40:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228936#M80903</guid>
      <dc:creator>sunil2288</dc:creator>
      <dc:date>2010-10-05T12:40:38Z</dc:date>
    </item>
    <item>
      <title>How to calculate CurrentYearMonth vs PrevYearMonth sales(Growth)</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228937#M80904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunil Panda,&lt;/P&gt;&lt;P&gt;Thanks for the reply!&lt;/P&gt;&lt;P&gt;Tell me according to my value which is there in the report. Then only it will be understandable.&lt;/P&gt;&lt;P&gt;This is what that is there in the report.&lt;BR /&gt;&lt;BR /&gt;&lt;B&gt;Dimension:&lt;/B&gt;&lt;BR /&gt;&lt;BR /&gt;Area Manager&lt;BR /&gt;&lt;BR /&gt;ItemName&lt;BR /&gt;&lt;BR /&gt;=MonthName(TranDate)&lt;BR /&gt;&lt;BR /&gt;&lt;B&gt;Expression:&lt;/B&gt;&lt;BR /&gt;&lt;BR /&gt;Sum(Qty) // Sales&lt;BR /&gt;&lt;BR /&gt;Sum(Target_Qty) //Target&lt;BR /&gt;&lt;BR /&gt;Sum(Qty)/Sum(Target_qty) //Acheivement&lt;BR /&gt;&lt;BR /&gt;--????-- // Growth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Oct 2010 12:49:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228937#M80904</guid>
      <dc:creator />
      <dc:date>2010-10-05T12:49:34Z</dc:date>
    </item>
    <item>
      <title>How to calculate CurrentYearMonth vs PrevYearMonth sales(Growth)</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228938#M80905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rikab&lt;/P&gt;&lt;P&gt;Sum(if(InYearToDate(TranDate,MAX(TranDate),0),sales)) / Sum(if(InYearToDate(TranDate,MAX(TranDate),-1),sales))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sunil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Oct 2010 13:02:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228938#M80905</guid>
      <dc:creator>sunil2288</dc:creator>
      <dc:date>2010-10-05T13:02:13Z</dc:date>
    </item>
    <item>
      <title>How to calculate CurrentYearMonth vs PrevYearMonth sales(Growth)</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228939#M80906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Panda,&lt;/P&gt;&lt;P&gt;I am not getting any result even after using the expression that has been sent by you. All are showing null values only. Could you please check why it is happening so.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Oct 2010 13:17:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228939#M80906</guid>
      <dc:creator />
      <dc:date>2010-10-05T13:17:57Z</dc:date>
    </item>
    <item>
      <title>How to calculate CurrentYearMonth vs PrevYearMonth sales(Growth)</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228940#M80907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't have the data i can't check it out from my end..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Oct 2010 13:31:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228940#M80907</guid>
      <dc:creator>sunil2288</dc:creator>
      <dc:date>2010-10-05T13:31:53Z</dc:date>
    </item>
    <item>
      <title>How to calculate CurrentYearMonth vs PrevYearMonth sales(Growth)</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228941#M80908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I have attached the sample application to work with. Hope some one can help me out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Oct 2010 13:46:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228941#M80908</guid>
      <dc:creator />
      <dc:date>2010-10-05T13:46:39Z</dc:date>
    </item>
    <item>
      <title>How to calculate CurrentYearMonth vs PrevYearMonth sales(Growth)</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228942#M80909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One way is an AsOf table:&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;AsOfMonth, YearType, Month&lt;BR /&gt;Apr 2010, Current, Apr 2010&lt;BR /&gt;Apr 2010, Previous, Apr 2009&lt;BR /&gt;Mar 2010, Current, Mar 2010&lt;BR /&gt;Mar 2010, Previous, Mar 2009&lt;/P&gt;&lt;P&gt;You'll need a Month field in your data to make it work, but you should have one anyway, either directly or with a calendar. Then:&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;dimension 1 (left) = ZM&lt;BR /&gt;dimension 2 (left) = ItemName&lt;BR /&gt;dimension 3 (top) = AsOfMonth&lt;BR /&gt;Sales = sum({&amp;lt;YearType={'Current'}&amp;gt;} Qty)&lt;BR /&gt;Target = sum({&amp;lt;YearType={'Current'}&amp;gt;} Target_Qty)&lt;BR /&gt;Ach = Sales / Target&lt;BR /&gt;Growth = Sales / sum ({&amp;lt;YearType={'Previous'}&amp;gt;} Qty) - 1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Oct 2010 23:10:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228942#M80909</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2010-10-05T23:10:43Z</dc:date>
    </item>
    <item>
      <title>How to calculate CurrentYearMonth vs PrevYearMonth sales(Growth)</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228943#M80910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;Thanks for your suggestions. Do you want to manually create a INLINE table and load the below table and later I need to changes in dimension and expression as said by you above.&lt;/P&gt;&lt;P&gt;Please clear my doubt as I am still not clear with it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;AsOf table:&lt;BR style="padding-left:30px;" /&gt;AsOfMonth, YearType, Month (Instead of Month need to pass Trans_Month as it is a month field in my data)&lt;BR /&gt;Apr 2010, Current, Apr 2010&lt;BR /&gt;Apr 2010, Previous, Apr 2009&lt;BR /&gt;Mar 2010, Current, Mar 2010&lt;BR /&gt;Mar 2010, Previous, Mar 2009&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Oct 2010 05:36:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228943#M80910</guid>
      <dc:creator />
      <dc:date>2010-10-06T05:36:26Z</dc:date>
    </item>
    <item>
      <title>How to calculate CurrentYearMonth vs PrevYearMonth sales(Growth)</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228944#M80911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;One way is an AsOf table:&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;AsOfMonth, YearType, Month&lt;BR /&gt;Apr 2010, Current, Apr 2010&lt;BR /&gt;Apr 2010, Previous, Apr 2009&lt;BR /&gt;Mar 2010, Current, Mar 2010&lt;BR /&gt;Mar 2010, Previous, Mar 2009&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;This is not forming linkage between Dates of source data and Month created in above table.&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;Can you share sample QV?&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Oct 2010 06:21:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228944#M80911</guid>
      <dc:creator />
      <dc:date>2010-10-06T06:21:40Z</dc:date>
    </item>
    <item>
      <title>How to calculate CurrentYearMonth vs PrevYearMonth sales(Growth)</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228945#M80912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I've tried to make a report. Look attached.&lt;/P&gt;&lt;P&gt;The idea is the same as described before: You create a table of current and previous months. What is more, add a new field "TranMonthName" in FACT table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Oct 2010 13:51:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228945#M80912</guid>
      <dc:creator />
      <dc:date>2010-10-06T13:51:29Z</dc:date>
    </item>
    <item>
      <title>How to calculate CurrentYearMonth vs PrevYearMonth sales(Growth)</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228946#M80913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rikab,&lt;/P&gt;&lt;P&gt;All must be simple ...&lt;/P&gt;&lt;P&gt;Tell me if this is the solution ...otherwise excuse me&lt;/P&gt;&lt;P&gt;I does attach .qvw made step by step&lt;/P&gt;&lt;P&gt;good luck, Luis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Oct 2010 21:22:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228946#M80913</guid>
      <dc:creator>llauses243</dc:creator>
      <dc:date>2010-10-06T21:22:04Z</dc:date>
    </item>
    <item>
      <title>How to calculate CurrentYearMonth vs PrevYearMonth sales(Growth)</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228947#M80914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rikab&lt;/P&gt;&lt;P&gt;Try This&lt;/P&gt;&lt;P&gt;Sum(if(InYearToDate(timestamp(TranDate,'YYYY-MM-DD'),YearStart(timestamp(TranDate,'YYYY-MM-DD')),0),Qty))&lt;BR /&gt;/&lt;BR /&gt;Sum(if(InYearToDate(timestamp(TranDate,'YYYY-MM-DD'),YearStart(timestamp(TranDate,'YYYY-MM-DD')),-1),Qty))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While using this i can't understand why YearStart function is not working .. it Should work ..&lt;/P&gt;&lt;P&gt;If it works then your query is solved&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sunil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Oct 2010 08:03:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228947#M80914</guid>
      <dc:creator>sunil2288</dc:creator>
      <dc:date>2010-10-07T08:03:39Z</dc:date>
    </item>
    <item>
      <title>How to calculate CurrentYearMonth vs PrevYearMonth sales(Growth)</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228948#M80915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Panda,&lt;/P&gt;&lt;P&gt;Thanks for your help. I tried the same here but it doesn't seems to be working. In all the records it is showing null values in all the records of this column.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Oct 2010 10:20:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228948#M80915</guid>
      <dc:creator />
      <dc:date>2010-10-07T10:20:54Z</dc:date>
    </item>
    <item>
      <title>How to calculate CurrentYearMonth vs PrevYearMonth sales(Growth)</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228949#M80916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rikab,&lt;/P&gt;&lt;P&gt;Is it correct for a item ?&lt;/P&gt;&lt;P&gt;good luck, Luis&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://community.qlik.com/cfs-file.ashx/__key/CommunityServer.Discussions.Components.Files/11/6253.explain.jpg"&gt;&lt;IMG alt="" border="0" src="http://community.qlik.com/resized-image.ashx/__size/550x0/__key/CommunityServer.Discussions.Components.Files/11/6253.explain.jpg" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Oct 2010 11:19:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228949#M80916</guid>
      <dc:creator>llauses243</dc:creator>
      <dc:date>2010-10-07T11:19:05Z</dc:date>
    </item>
    <item>
      <title>How to calculate CurrentYearMonth vs PrevYearMonth sales(Growth)</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228950#M80917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Luis,&lt;/P&gt;&lt;P&gt;Exactly! That is correct value. But the rule is I want only in Pivot table only(As show in my report which is there in the application). Could you please do the required changes and send it to me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Oct 2010 12:18:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228950#M80917</guid>
      <dc:creator />
      <dc:date>2010-10-07T12:18:57Z</dc:date>
    </item>
    <item>
      <title>How to calculate CurrentYearMonth vs PrevYearMonth sales(Growth)</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228951#M80918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Luis,&lt;/P&gt;&lt;P&gt;It is little urgent could you please send it at the earliest.&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Oct 2010 14:28:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228951#M80918</guid>
      <dc:creator />
      <dc:date>2010-10-07T14:28:31Z</dc:date>
    </item>
    <item>
      <title>How to calculate CurrentYearMonth vs PrevYearMonth sales(Growth)</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228952#M80919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rikab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;another solution is to store the past and the current at the same place (date) in the table.&lt;/P&gt;&lt;P&gt;if it can help do it like this&lt;/P&gt;&lt;P&gt;there is already a table named SH with all the data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Evol_src:&lt;BR /&gt; LOAD distinct&lt;/P&gt;&lt;P&gt;makedate(SH_An + 1, SH_Mois) as SH_Date,&lt;/P&gt;&lt;P&gt;SH_Etab,&lt;BR /&gt; SH_CA as SH_CAp&lt;BR /&gt; RESIDENT SH&lt;BR /&gt; WHERE date(makedate(SH_An, SH_Mois), 'YYYYMM') &amp;lt;= date( makedate(mid($(PeriodeData), 1, 4) - 1, num(mid($(PeriodeData), 5, 2))), 'YYYYMM')&lt;BR /&gt; ;&lt;BR /&gt;&lt;BR /&gt; JOIN (SH)&lt;BR /&gt; LOAD distinct&lt;BR /&gt; SH_Date,&lt;BR /&gt; SH_Etab,&lt;BR /&gt; SH_CAp&lt;BR /&gt; RESIDENT Evol_src&lt;BR /&gt; ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop table Evol_src;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in my case PeriodeData means the departure time.&lt;/P&gt;&lt;P&gt;best regards&lt;/P&gt;&lt;P&gt;christian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Oct 2010 14:37:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-CurrentYearMonth-vs-PrevYearMonth-sales-Growth/m-p/228952#M80919</guid>
      <dc:creator />
      <dc:date>2010-10-07T14:37:38Z</dc:date>
    </item>
  </channel>
</rss>

