<?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: Calculating Month on Month Movements and Categorizing in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Calculating-Month-on-Month-Movements-and-Categorizing/m-p/139522#M600803</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh, I see. Then maybe like this&lt;/P&gt;&lt;P&gt;table1:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Reporting Date, Account no, Start_Date, End_Date, Balance&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 31/01/2018, A, 31/01/2016, 31/01/2020, 100&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 31/01/2018, B, 31/01/2016, 28/02/2018, 50&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 28/02/2018, A, 31/01/2016, 31/01/2020, 80&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 28/02/2018, B, 31/01/2016, 28/02/2018, 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 28/02/2018, C, 28/02/2018, 31/01/2020, 10&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 31/03/2018, A, 31/01/2016, 31/01/2020, 70&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 31/03/2018, C, 28/02/2018, 31/01/2020, 20&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;table2: NoConcatenate&lt;/P&gt;&lt;P&gt;Load [Reporting Date], [Account no], [Start_Date], [End_Date], [Balance] &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , if([Start_Date] = [Reporting Date], 'New', 'Existing') as Category&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , if([Account no] &amp;lt;&amp;gt; Previous([Account no]) and [Start_Date] &amp;lt;&amp;gt; [Reporting Date], 0, Balance - Previous(Balance)) as Movement&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , if([Start_Date] = [Reporting Date], 'New',&amp;nbsp; If(Balance = 0, 'Repaid', if([Account no] = Previous([Account no]), If(RangeSum(Balance, -Previous(Balance)) &amp;gt; 0, 'Increase', 'Decrease'), '') ) ) as [Sub Category]&lt;/P&gt;&lt;P&gt;Resident table1 Order by [Account no], [Reporting Date];&lt;/P&gt;&lt;P&gt;Drop Table table1;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 Oct 2018 10:44:39 GMT</pubDate>
    <dc:creator>andrey_krylov</dc:creator>
    <dc:date>2018-10-26T10:44:39Z</dc:date>
    <item>
      <title>Calculating Month on Month Movements and Categorizing</title>
      <link>https://community.qlik.com/t5/QlikView/Calculating-Month-on-Month-Movements-and-Categorizing/m-p/139519#M600800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333px;"&gt;Dear all,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;I realize that the title is not very descriptive, but here is what I am trying to do:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;I have a table:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LOAD * INLINE [&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Reporting Date, Account no, Start_Date, End_Date, Balance, Category, Sub Category, Movement&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 31/01/2018, A, 31/01/2016, 31/01/2020, 100, Existing, 0&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 31/01/2018, B, 31/01/2016, 28/02/2018, 50, Existing, 0&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 28/02/2018, A, 31/01/2016, 31/01/2020, 80, Existing, Decrease, -20&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 28/02/2018, B, 31/01/2016, 28/02/2018, 0, Existing, Repaid, -50&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 28/02/2018, C, 28/02/2018, 31/01/2020, 10, New, New, 10&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 31/03/2018, A, 31/01/2016, 31/01/2020, 70, Existing, Decrease, -10&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 31/03/2018, C, 28/02/2018, 31/01/2020, 20, Existing, Increase, 10&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;];&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;What I have is; Reporting Date, Account no, Start_Date, End_Date and Balance.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;What I want to calculate is Category, Sub Category and Movement.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;If Category is New, the Movement should just be the Balance, but if the Category is Existing, then it should be the Movement from the prior date.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Then if the movement is negative then Decrease else increase.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;I have tried a few ways to do this, but for some reason, I am having difficulties calculating the month on month movements.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Any help/guidance is appreciated.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Regards,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Aksel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2018 07:15:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculating-Month-on-Month-Movements-and-Categorizing/m-p/139519#M600800</guid>
      <dc:creator>aetingu12</dc:creator>
      <dc:date>2018-10-26T07:15:24Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Month on Month Movements and Categorizing</title>
      <link>https://community.qlik.com/t5/QlikView/Calculating-Month-on-Month-Movements-and-Categorizing/m-p/139520#M600801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aksel. What about doing it in the load script&lt;/P&gt;&lt;P&gt;table1:&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD * INLINE [&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Reporting Date, Account no, Start_Date, End_Date, Balance, Category, Sub Category, Movement&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 31/01/2018, A, 31/01/2016, 31/01/2020, 100, Existing, 0&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 31/01/2018, B, 31/01/2016, 28/02/2018, 50, Existing, 0&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 28/02/2018, A, 31/01/2016, 31/01/2020, 80, Existing, Decrease, -20&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 28/02/2018, B, 31/01/2016, 28/02/2018, 0, Existing, Repaid, -50&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 28/02/2018, C, 28/02/2018, 31/01/2020, 10, New, New, 10&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 31/03/2018, A, 31/01/2016, 31/01/2020, 70, Existing, Decrease, -10&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 31/03/2018, C, 28/02/2018, 31/01/2020, 20, Existing, Increase, 10&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;];&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;table2:&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load [&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3332996368408px;"&gt;Reporting Date], [Account no], [Start_Date], [End_Date], [Balance], [Category], [Sub Category]&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,If(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3332996368408px;"&gt;Category = 'New', &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3332996368408px;"&gt;Balance, If(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3332996368408px;"&gt;Category = 'Existing', Previous(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3332996368408px;"&gt;Movement&lt;/SPAN&gt;), If(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3332996368408px;"&gt;Movement &amp;lt; 0, '&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3332996368408px;"&gt;&lt;STRONG&gt;Decrease', '&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3332996368408px;"&gt;&lt;STRONG&gt;increase'&lt;/STRONG&gt; )&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;)&lt;/SPAN&gt;&lt;/SPAN&gt;) as &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3332996368408px;"&gt;Movement &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Resident &lt;SPAN style="font-size: 13.3333330154419px;"&gt;table1 Order by [&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3332996368408px;"&gt;Account no], [&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3332996368408px;"&gt;Reporting Date]; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13.3332996368408px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Drop Table &lt;SPAN style="font-size: 13.3333330154419px;"&gt;table1;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;SPAN lang="en"&gt;The only thing&lt;/SPAN&gt;, I did not get what &lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3332996368408px;"&gt;&lt;STRONG&gt;Decrease&lt;/STRONG&gt; &lt;STRONG&gt;increase&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;are.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2018 08:40:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculating-Month-on-Month-Movements-and-Categorizing/m-p/139520#M600801</guid>
      <dc:creator>andrey_krylov</dc:creator>
      <dc:date>2018-10-26T08:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Month on Month Movements and Categorizing</title>
      <link>https://community.qlik.com/t5/QlikView/Calculating-Month-on-Month-Movements-and-Categorizing/m-p/139521#M600802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The issue is that the Categories, Movements and the sub Category needs to be calculated from the Balances.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First step to calculate the Category:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -Check if Start Date is equal to the Reporting Date, if so, mark Category as New, else Existing.&lt;/P&gt;&lt;P&gt;Second Step is to calculate the Movement:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -&lt;SPAN style="text-decoration: underline;"&gt;Calculate Month on Month movement&lt;/SPAN&gt; (this is where I have the main issue)&lt;/P&gt;&lt;P&gt;For every account, I would like to create a new column of Movements where I have the difference from the prior month.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;So for example for Account A in February you have a balance of 80 and in the following month (March) the balance reduces to 70 so the movement column should be -10.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;If this number is negative then it is a decrease if positive then increase.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Hope it makes a bit more sense.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2018 09:50:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculating-Month-on-Month-Movements-and-Categorizing/m-p/139521#M600802</guid>
      <dc:creator>aetingu12</dc:creator>
      <dc:date>2018-10-26T09:50:44Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Month on Month Movements and Categorizing</title>
      <link>https://community.qlik.com/t5/QlikView/Calculating-Month-on-Month-Movements-and-Categorizing/m-p/139522#M600803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh, I see. Then maybe like this&lt;/P&gt;&lt;P&gt;table1:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Reporting Date, Account no, Start_Date, End_Date, Balance&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 31/01/2018, A, 31/01/2016, 31/01/2020, 100&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 31/01/2018, B, 31/01/2016, 28/02/2018, 50&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 28/02/2018, A, 31/01/2016, 31/01/2020, 80&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 28/02/2018, B, 31/01/2016, 28/02/2018, 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 28/02/2018, C, 28/02/2018, 31/01/2020, 10&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 31/03/2018, A, 31/01/2016, 31/01/2020, 70&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 31/03/2018, C, 28/02/2018, 31/01/2020, 20&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;table2: NoConcatenate&lt;/P&gt;&lt;P&gt;Load [Reporting Date], [Account no], [Start_Date], [End_Date], [Balance] &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , if([Start_Date] = [Reporting Date], 'New', 'Existing') as Category&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , if([Account no] &amp;lt;&amp;gt; Previous([Account no]) and [Start_Date] &amp;lt;&amp;gt; [Reporting Date], 0, Balance - Previous(Balance)) as Movement&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , if([Start_Date] = [Reporting Date], 'New',&amp;nbsp; If(Balance = 0, 'Repaid', if([Account no] = Previous([Account no]), If(RangeSum(Balance, -Previous(Balance)) &amp;gt; 0, 'Increase', 'Decrease'), '') ) ) as [Sub Category]&lt;/P&gt;&lt;P&gt;Resident table1 Order by [Account no], [Reporting Date];&lt;/P&gt;&lt;P&gt;Drop Table table1;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2018 10:44:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculating-Month-on-Month-Movements-and-Categorizing/m-p/139522#M600803</guid>
      <dc:creator>andrey_krylov</dc:creator>
      <dc:date>2018-10-26T10:44:39Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Month on Month Movements and Categorizing</title>
      <link>https://community.qlik.com/t5/QlikView/Calculating-Month-on-Month-Movements-and-Categorizing/m-p/139523#M600804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Epic! Thank you very much!&lt;/P&gt;&lt;P&gt;I didn't know about the existence of 'Previous'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2018 11:09:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculating-Month-on-Month-Movements-and-Categorizing/m-p/139523#M600804</guid>
      <dc:creator>aetingu12</dc:creator>
      <dc:date>2018-10-26T11:09:52Z</dc:date>
    </item>
  </channel>
</rss>

