<?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 Month Accumulation grouped by Year, Account in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Month-Accumulation-grouped-by-Year-Account/m-p/211185#M502997</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Miguel, but &lt;STRONG&gt;&lt;/STRONG&gt;I need to do this in the scipt..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Sep 2010 09:58:13 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-09-21T09:58:13Z</dc:date>
    <item>
      <title>Month Accumulation grouped by Year, Account</title>
      <link>https://community.qlik.com/t5/QlikView/Month-Accumulation-grouped-by-Year-Account/m-p/211183#M502995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello to everybody. I am a newbie and need help with some raw account data.&lt;BR /&gt;&lt;BR /&gt;I have Amount of Accounts for every month, but the Amount must be accumulated every month for every AccountNumber. How can this be done with QlikView script? Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Sep 2010 09:00:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-Accumulation-grouped-by-Year-Account/m-p/211183#M502995</guid>
      <dc:creator />
      <dc:date>2010-09-21T09:00:35Z</dc:date>
    </item>
    <item>
      <title>Month Accumulation grouped by Year, Account</title>
      <link>https://community.qlik.com/t5/QlikView/Month-Accumulation-grouped-by-Year-Account/m-p/211184#M502996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Konstantin,&lt;/P&gt;&lt;P&gt;Create a new chart, select pivot table, set Month, Year and AccountN as dimensions and&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;aggr(rangesum(top(Amount, 1, RowNo() -1)), AccountN, Year, Month)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;as expression&lt;/P&gt;&lt;P&gt;This should work.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Sep 2010 09:32:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-Accumulation-grouped-by-Year-Account/m-p/211184#M502996</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2010-09-21T09:32:19Z</dc:date>
    </item>
    <item>
      <title>Month Accumulation grouped by Year, Account</title>
      <link>https://community.qlik.com/t5/QlikView/Month-Accumulation-grouped-by-Year-Account/m-p/211185#M502997</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Miguel, but &lt;STRONG&gt;&lt;/STRONG&gt;I need to do this in the scipt..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Sep 2010 09:58:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-Accumulation-grouped-by-Year-Account/m-p/211185#M502997</guid>
      <dc:creator />
      <dc:date>2010-09-21T09:58:13Z</dc:date>
    </item>
    <item>
      <title>Month Accumulation grouped by Year, Account</title>
      <link>https://community.qlik.com/t5/QlikView/Month-Accumulation-grouped-by-Year-Account/m-p/211186#M502998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pls check attached qvw .&lt;/P&gt;&lt;P&gt;it contain solution of your probelm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Sep 2010 11:00:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-Accumulation-grouped-by-Year-Account/m-p/211186#M502998</guid>
      <dc:creator>suniljain</dc:creator>
      <dc:date>2010-09-21T11:00:02Z</dc:date>
    </item>
    <item>
      <title>Month Accumulation grouped by Year, Account</title>
      <link>https://community.qlik.com/t5/QlikView/Month-Accumulation-grouped-by-Year-Account/m-p/211187#M502999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Konstantin,&lt;/P&gt;&lt;P&gt;Add a new table liek the following&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;LOAD Month, Year, AccountN, Amount, If(AccountN = Previous(AccountN), RangeSum(Amount, Peek('Acum')), Amount) AS AcumRESIDENT RawDataORDER BY AccountN, Month;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;If you now create a new chart with Month, Year and AccountN as dimensions and&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Sum(Acum)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;will see values as expected. YOu can do as well a tablebox with Month, Year, AccountN and Acum as fields, go to properties, Sort by Month and AccountN. &lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Hope that helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Sep 2010 11:14:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-Accumulation-grouped-by-Year-Account/m-p/211187#M502999</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2010-09-21T11:14:30Z</dc:date>
    </item>
    <item>
      <title>Month Accumulation grouped by Year, Account</title>
      <link>https://community.qlik.com/t5/QlikView/Month-Accumulation-grouped-by-Year-Account/m-p/211188#M503000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. Thats it! Thank you, &lt;STRONG&gt;Miguel&lt;/STRONG&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Sep 2010 12:29:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-Accumulation-grouped-by-Year-Account/m-p/211188#M503000</guid>
      <dc:creator />
      <dc:date>2010-09-21T12:29:25Z</dc:date>
    </item>
    <item>
      <title>Month Accumulation grouped by Year, Account</title>
      <link>https://community.qlik.com/t5/QlikView/Month-Accumulation-grouped-by-Year-Account/m-p/211189#M503001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I found one flaw with this method:&lt;BR /&gt;Every Account Number must be present in raw data every month. If Any new Account appears only once, that Amount is not transferred on to the next month, i.e. it does not accumulate... Is there a way to make it do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Sep 2010 17:29:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-Accumulation-grouped-by-Year-Account/m-p/211189#M503001</guid>
      <dc:creator />
      <dc:date>2010-09-21T17:29:13Z</dc:date>
    </item>
    <item>
      <title>Month Accumulation grouped by Year, Account</title>
      <link>https://community.qlik.com/t5/QlikView/Month-Accumulation-grouped-by-Year-Account/m-p/211190#M503002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Konstantin,&lt;/P&gt;&lt;P&gt;In a tablebox, there is no aggregation, so it will only display actual information. If you don't have more records with that account, it won't be displayed in a table box.&lt;/P&gt;&lt;P&gt;You may try creating a new chart, pivot or straight table, and creating a calendar, so all months are displayed as dimensions in charts, although they have zero as value.&lt;/P&gt;&lt;P&gt;Hope that helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 13:02:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-Accumulation-grouped-by-Year-Account/m-p/211190#M503002</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2010-09-23T13:02:03Z</dc:date>
    </item>
  </channel>
</rss>

