<?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 a Pivot Table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Accumulation-in-a-Pivot-Table/m-p/136265#M759451</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 am trying to create a pivot table where I have to show the Year (dimension) and Count of Customers (Measure/Exp). I have shown this is a bar chart and accumulated the count of customers over years. The approach is very simple in a bar chart. Just click on the accumulation and it works. But the user wants to see the same information in a pivot table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now when I calculate the same in the pivot, there is no option to perform an accumulation. Can someone suggest me how to do accumulation in a pivot table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The requirement is a bit urgent. Any help is highly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ishika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>ishika00730</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>Accumulation in a Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Accumulation-in-a-Pivot-Table/m-p/136265#M759451</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 am trying to create a pivot table where I have to show the Year (dimension) and Count of Customers (Measure/Exp). I have shown this is a bar chart and accumulated the count of customers over years. The approach is very simple in a bar chart. Just click on the accumulation and it works. But the user wants to see the same information in a pivot table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now when I calculate the same in the pivot, there is no option to perform an accumulation. Can someone suggest me how to do accumulation in a pivot table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The requirement is a bit urgent. Any help is highly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ishika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Accumulation-in-a-Pivot-Table/m-p/136265#M759451</guid>
      <dc:creator>ishika00730</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Accumulation in a Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Accumulation-in-a-Pivot-Table/m-p/136266#M759452</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this -&lt;/P&gt;&lt;P&gt;RangeSum(Above(TOTAL Count(Customer), 0, Rowno(TOTAL)))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Aug 2018 14:10:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Accumulation-in-a-Pivot-Table/m-p/136266#M759452</guid>
      <dc:creator>neelamsaroha157</dc:creator>
      <dc:date>2018-08-30T14:10:35Z</dc:date>
    </item>
    <item>
      <title>Re: Accumulation in a Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Accumulation-in-a-Pivot-Table/m-p/136267#M759453</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;Like Neelam mentioned, you have t use the function RangeSum combined with Before or Above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to do accumulation in the columns you should use&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;RangeSum(Before(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Count(Customer)&lt;/SPAN&gt;&lt;/SPAN&gt;, 0, ColumnNo()))&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you do accumulation in the rows, you should use&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'Lucida Grande', Arial, Helvetica, sans-serif;"&gt;RangeSum(Above(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Count(Customer)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Lucida Grande', Arial, Helvetica, sans-serif;"&gt;, 0, RowNo()))&lt;/SPAN&gt;&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The use of TOTAL depends if you want to sum all the values or just the ones that are displayed in the pivot table.&lt;/P&gt;&lt;P&gt;The use of the number 0 (zero) as the second parameter depends if you want to include the current row/column, if not, you can use the number 1 (one).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope I could help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Alexandra.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Aug 2018 14:25:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Accumulation-in-a-Pivot-Table/m-p/136267#M759453</guid>
      <dc:creator>alexandrakfcosta</dc:creator>
      <dc:date>2018-08-30T14:25:49Z</dc:date>
    </item>
    <item>
      <title>Re: Accumulation in a Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Accumulation-in-a-Pivot-Table/m-p/136268#M759454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alexandra &amp;amp; Neelam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You guys are awesome.&amp;nbsp; One more help needed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since I have the expression by Customer Join Month, the last month has the maximum value. I want to sort this table now in desc order. But when I sort it in desc order, the 1st month starts showing the maximum value after sort. I know that this is because of the expression. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest some solution .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ishika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2018 01:44:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Accumulation-in-a-Pivot-Table/m-p/136268#M759454</guid>
      <dc:creator>ishika00730</dc:creator>
      <dc:date>2018-08-31T01:44:50Z</dc:date>
    </item>
    <item>
      <title>Re: Accumulation in a Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Accumulation-in-a-Pivot-Table/m-p/136269#M759455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot Neelam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2018 01:45:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Accumulation-in-a-Pivot-Table/m-p/136269#M759455</guid>
      <dc:creator>ishika00730</dc:creator>
      <dc:date>2018-08-31T01:45:24Z</dc:date>
    </item>
  </channel>
</rss>

