<?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 Accumulation in Pivot table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Accumulation-in-Pivot-table/m-p/159129#M33899</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is great! Thank You for help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 Feb 2010 08:54:59 GMT</pubDate>
    <dc:creator>boryspower</dc:creator>
    <dc:date>2010-02-26T08:54:59Z</dc:date>
    <item>
      <title>Accumulation in Pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/Accumulation-in-Pivot-table/m-p/159124#M33894</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 have a simple example of what I want to get....&lt;/P&gt;&lt;P&gt;The data looks like this:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;BR /&gt; Item, Data, Produced&lt;BR /&gt; aaa, 2010-01-01, 5&lt;BR /&gt; aaa, 2010-01-02, 12&lt;BR /&gt; aaa, 2010-01-03, 4&lt;BR /&gt; bbb, 2010-01-01, 57&lt;BR /&gt; bbb, 2010-01-03, 12&lt;BR /&gt; ccc, 2010-01-11, 67&lt;BR /&gt; ccc, 2010-01-12, 35&lt;BR /&gt; ccc, 2010-01-13, 7&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So this is production of items within some days. From this I have the table:&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/-1159_sourceID:1159" /&gt;&lt;/P&gt;&lt;P&gt;but I'd like to have accumulated values there, so the first row would look like this:&lt;/P&gt;&lt;P&gt;aaa | 5 | 17 | 21 | 21 | 21 | 21 |&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this possible?&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>Thu, 25 Feb 2010 09:17:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Accumulation-in-Pivot-table/m-p/159124#M33894</guid>
      <dc:creator>boryspower</dc:creator>
      <dc:date>2010-02-25T09:17:23Z</dc:date>
    </item>
    <item>
      <title>Accumulation in Pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/Accumulation-in-Pivot-table/m-p/159125#M33895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG&gt;boryspower,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;This is possible ,&lt;/P&gt;&lt;P&gt;try by using Chart Inter Record functions&lt;/P&gt;&lt;P&gt;e.g. above()&lt;/P&gt;&lt;P&gt;For more help go through qlikview help&lt;/P&gt;&lt;P&gt;Topic: Chart Inter Record functions&lt;/P&gt;&lt;P&gt;Hope this will help you&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2010 09:32:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Accumulation-in-Pivot-table/m-p/159125#M33895</guid>
      <dc:creator />
      <dc:date>2010-02-25T09:32:05Z</dc:date>
    </item>
    <item>
      <title>Accumulation in Pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/Accumulation-in-Pivot-table/m-p/159126#M33896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank You Rahul, But do You have any idea how to apply it to my case? Where I have data placed horizontally?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2010 13:55:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Accumulation-in-Pivot-table/m-p/159126#M33896</guid>
      <dc:creator>boryspower</dc:creator>
      <dc:date>2010-02-25T13:55:06Z</dc:date>
    </item>
    <item>
      <title>Accumulation in Pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/Accumulation-in-Pivot-table/m-p/159127#M33897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;ITEM and DATA are the dimensions&lt;/P&gt;&lt;P&gt;and Produced1=If(ISNULL(Sum(Produced)+ before([Produced1])),Sum(Produced),Sum(Produced)+ before([Produced1]))&lt;/P&gt;&lt;P&gt;as expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Produced1 is the lable of the expression&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;It will work fine&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2010 14:25:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Accumulation-in-Pivot-table/m-p/159127#M33897</guid>
      <dc:creator />
      <dc:date>2010-02-25T14:25:40Z</dc:date>
    </item>
    <item>
      <title>Accumulation in Pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/Accumulation-in-Pivot-table/m-p/159128#M33898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="http://community.qlik.com/cfs-file.ashx/__key/CommunityServer.Discussions.Components.Files/11/3146.untitled.bmp"&gt;&lt;IMG alt="" border="0" src="http://community.qlik.com/resized-image.ashx/__size/550x0/__key/CommunityServer.Discussions.Components.Files/11/3146.untitled.bmp" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2010 14:39:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Accumulation-in-Pivot-table/m-p/159128#M33898</guid>
      <dc:creator />
      <dc:date>2010-02-25T14:39:37Z</dc:date>
    </item>
    <item>
      <title>Accumulation in Pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/Accumulation-in-Pivot-table/m-p/159129#M33899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is great! Thank You for help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Feb 2010 08:54:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Accumulation-in-Pivot-table/m-p/159129#M33899</guid>
      <dc:creator>boryspower</dc:creator>
      <dc:date>2010-02-26T08:54:59Z</dc:date>
    </item>
  </channel>
</rss>

