<?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: Disable total/partial sum in pivot table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Disable-total-partial-sum-in-pivot-table/m-p/46317#M777102</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then you can use the same functionality:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if (Dimensionality()=1, sum(something), sum(something_else))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Apr 2018 06:35:29 GMT</pubDate>
    <dc:creator>itec_pao</dc:creator>
    <dc:date>2018-04-17T06:35:29Z</dc:date>
    <item>
      <title>Disable total/partial sum in pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/Disable-total-partial-sum-in-pivot-table/m-p/46314#M777099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I would like to know if there is a way to disable partial / total sum of values in a pivot table. I tried by checking "Total Mode -&amp;gt; No Totals" and in Presentation tab unchecking "Show partial sum" but it`s still not working.&lt;/P&gt;&lt;P&gt;I would like to have something like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" height="149" style="width: 674px; height: 149px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl63" height="17" width="98"&gt;Metric1&lt;/TD&gt;&lt;TD class="xl64" width="401"&gt; &lt;/TD&gt;&lt;TD align="right" class="xl65" width="179"&gt;10 000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl66" height="17"&gt; &lt;/TD&gt;&lt;TD class="xl67" style="border-left: none;"&gt;Metric2_1&lt;/TD&gt;&lt;TD align="right" class="xl68" style="border-top: none; border-left: none;"&gt;60&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl67" height="17" style="border-top: none;"&gt; &lt;/TD&gt;&lt;TD class="xl67" style="border-top: none; border-left: none;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Metric2_2&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD align="right" class="xl68" style="border-top: none; border-left: none;"&gt;40&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl67" height="17" style="border-top: none;"&gt; &lt;/TD&gt;&lt;TD class="xl67" style="border-top: none; border-left: none;"&gt;Metric2_3&lt;/TD&gt;&lt;TD align="right" class="xl68" style="border-top: none; border-left: none;"&gt;50&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl67" height="17" style="border-top: none;"&gt; &lt;/TD&gt;&lt;TD class="xl67" style="border-top: none; border-left: none;"&gt;Metric2_4&lt;/TD&gt;&lt;TD align="right" class="xl68" style="border-top: none; border-left: none;"&gt;20&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl67" height="17" style="border-top: none;"&gt; &lt;/TD&gt;&lt;TD class="xl67" style="border-top: none; border-left: none;"&gt;Metric2_5&lt;/TD&gt;&lt;TD align="right" class="xl68" style="border-top: none; border-left: none;"&gt;30&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Each Metric is beeing calculated at reload and I would like to present them in a PivotTable using Indent Mode. But every time for Metric1 I get the sum of Metric2 values.&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Razvan&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/Disable-total-partial-sum-in-pivot-table/m-p/46314#M777099</guid>
      <dc:creator>razvan_brais</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Disable total/partial sum in pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/Disable-total-partial-sum-in-pivot-table/m-p/46315#M777100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Razvan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Intend mode, it shows you the partial sums. In order to get rid of that you use the function dimensionality(). Your expression would look like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(Dimensionality()&amp;gt;1,sum(Value), ' ')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This calculates everything where the dimensionality is greater then 1 and for the dimensionality = 1 (Metric1) puts just a space.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Oktay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Apr 2018 06:18:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Disable-total-partial-sum-in-pivot-table/m-p/46315#M777100</guid>
      <dc:creator>itec_pao</dc:creator>
      <dc:date>2018-04-17T06:18:03Z</dc:date>
    </item>
    <item>
      <title>Re: Disable total/partial sum in pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/Disable-total-partial-sum-in-pivot-table/m-p/46316#M777101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Oktay,&lt;/P&gt;&lt;P&gt;Thanks for your answer. This is partially correct , but I would like to show the value for Metric1 which is also calculated at reload time and it has a different value than the sum of Metric2...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Apr 2018 06:22:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Disable-total-partial-sum-in-pivot-table/m-p/46316#M777101</guid>
      <dc:creator>razvan_brais</dc:creator>
      <dc:date>2018-04-17T06:22:16Z</dc:date>
    </item>
    <item>
      <title>Re: Disable total/partial sum in pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/Disable-total-partial-sum-in-pivot-table/m-p/46317#M777102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then you can use the same functionality:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if (Dimensionality()=1, sum(something), sum(something_else))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Apr 2018 06:35:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Disable-total-partial-sum-in-pivot-table/m-p/46317#M777102</guid>
      <dc:creator>itec_pao</dc:creator>
      <dc:date>2018-04-17T06:35:29Z</dc:date>
    </item>
  </channel>
</rss>

