<?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 Conditional Subtotal of Pivot Table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Conditional-Subtotal-of-Pivot-Table/m-p/543485#M480945</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi QV Community folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am facing some problem with pivot table subtotals. Here is the screen shot of my current pivot table&lt;/P&gt;&lt;P&gt;&lt;IMG alt="PivotTableScreenshot.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/48298_PivotTableScreenshot.png" style="width: 620px; height: 354px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wiped out the sensitive information, but what I want is that for each year (second dimension) my subtotal calculates the AVERAGE of the "performance points" column for all rows except for the rows with 'N/A'. Is there a way to accomplish this? The "performance points" is a calculated fields with nested if statement because of the complexity of the determination of the points &lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much for any helpful guidance!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Jihan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Oct 2013 16:21:23 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-10-29T16:21:23Z</dc:date>
    <item>
      <title>Conditional Subtotal of Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-Subtotal-of-Pivot-Table/m-p/543485#M480945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi QV Community folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am facing some problem with pivot table subtotals. Here is the screen shot of my current pivot table&lt;/P&gt;&lt;P&gt;&lt;IMG alt="PivotTableScreenshot.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/48298_PivotTableScreenshot.png" style="width: 620px; height: 354px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wiped out the sensitive information, but what I want is that for each year (second dimension) my subtotal calculates the AVERAGE of the "performance points" column for all rows except for the rows with 'N/A'. Is there a way to accomplish this? The "performance points" is a calculated fields with nested if statement because of the complexity of the determination of the points &lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much for any helpful guidance!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Jihan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 16:21:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-Subtotal-of-Pivot-Table/m-p/543485#M480945</guid>
      <dc:creator />
      <dc:date>2013-10-29T16:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional Subtotal of Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-Subtotal-of-Pivot-Table/m-p/543486#M480946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Should be possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your expression, you can use Dimensionality() to determine if the calculation is performed on subtotal or detail level, then conditionally choose an appropriate calculation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;avg() function should not take into consideration text values, so 'N/A' should be dismissed by default.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To tell you more, I think you need to tell us more details about the expression used etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 16:31:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-Subtotal-of-Pivot-Table/m-p/543486#M480946</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2013-10-29T16:31:01Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional Subtotal of Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-Subtotal-of-Pivot-Table/m-p/543487#M480947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use expression something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=If(Dimensionality()&amp;lt;&amp;gt;1, YourExpressionForPerformance, Avg(Amountfield))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And then, enable Subtotal in presentation tab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 16:33:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-Subtotal-of-Pivot-Table/m-p/543487#M480947</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2013-10-29T16:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional Subtotal of Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-Subtotal-of-Pivot-Table/m-p/543488#M480948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thank you for your quick reply. The following is my expression for the calculation of performance points column:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;=&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(Denominator=0,'N/A',if(if(HPIP_Max&amp;lt;&amp;gt;HPIP_Min,1+(1-(HPIP_Max/100-Performance)/(HPIP_Max/100-HPIP_Min/100))*4,&lt;BR /&gt;if(Performance&amp;gt;=HPIP_Min/100,5,0))&amp;lt;0.99,0,if(if(HPIP_Max&amp;lt;&amp;gt;HPIP_Min,1+(1-(HPIP_Max/100-Performance)/(HPIP_Max/100-HPIP_Min/100))*4,&lt;BR /&gt;if(Performance&amp;gt;=HPIP_Min/100,5,0))&amp;gt;5,5,if(HPIP_Max&amp;lt;&amp;gt;HPIP_Min,1+(1-(HPIP_Max/100-Performance)/(HPIP_Max/100-HPIP_Min/100))*4,&lt;BR /&gt;if(Performance&amp;gt;=HPIP_Min/100,5,0))))) &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;HPIP_Max is the maximum performance value, HPIP_Min is the minimum performance value. I know if hard to figure out but basically, it checks how the current performance stands between the max and min value and assign a points.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Could you please explain dimensionality function a bit more. I used the help in QV but couldn't quite get it.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Thank you so much!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 16:41:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-Subtotal-of-Pivot-Table/m-p/543488#M480948</guid>
      <dc:creator />
      <dc:date>2013-10-29T16:41:06Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional Subtotal of Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-Subtotal-of-Pivot-Table/m-p/543489#M480949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you please explain more about the dimensionality function for send me some reference link?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 16:41:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-Subtotal-of-Pivot-Table/m-p/543489#M480949</guid>
      <dc:creator />
      <dc:date>2013-10-29T16:41:42Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional Subtotal of Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-Subtotal-of-Pivot-Table/m-p/543490#M480950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's not really complicated, have you looked at the samples in the Help file?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just create another expression,&lt;/P&gt;&lt;P&gt;=Dimensionality()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and check the results in your table, with a subtotal for Year dimension, you should get values 3 for detail lines and 1 for subtotal lines, if I see it correctly. So you can check against these values to decide which calculation to perform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your above expression, &lt;EM&gt;Performance&lt;/EM&gt; is an expression label, right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You might need to use advanced aggregation and the original expressions instead the label to calculate your average.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 16:48:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-Subtotal-of-Pivot-Table/m-p/543490#M480950</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2013-10-29T16:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional Subtotal of Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-Subtotal-of-Pivot-Table/m-p/543491#M480951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, Denominator and Performance are all expression labels? They would cause any problem? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 16:50:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-Subtotal-of-Pivot-Table/m-p/543491#M480951</guid>
      <dc:creator />
      <dc:date>2013-10-29T16:50:48Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Conditional Subtotal of Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-Subtotal-of-Pivot-Table/m-p/543492#M480952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;From help:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P class="syntax"&gt;&lt;A name="kanchor313"&gt;&lt;/A&gt;&lt;A name="dimensionality"&gt;&lt;/A&gt;&lt;SPAN class="Bold"&gt;&lt;STRONG&gt;dimensionality ( )&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Returns the number of dimension columns that have non-aggregation content. i.e. do not contain partial sums or collapsed aggregates.&lt;/P&gt;
&lt;P&gt;A typical use is in attribute expressions, when you want to apply different cell formatting depending on aggregation level of data.&lt;/P&gt;
&lt;P&gt;This function is only available in charts. For all chart types except pivot table it will return the number of dimensions in all rows except the total, which will be 0.&lt;/P&gt;

&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;PFA for understanding with example&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 16:53:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-Subtotal-of-Pivot-Table/m-p/543492#M480952</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2013-10-29T16:53:52Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional Subtotal of Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-Subtotal-of-Pivot-Table/m-p/543493#M480953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Tresesco for the great example. Now I figured out the dimentionality() function; however, QV doesn't seem to like my expression:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;if&lt;SPAN style="font-size: 8pt;"&gt;(Denominator=0,'N/A',if(if(HPIP_Max&amp;lt;&amp;gt;HPIP_Min,1+(1-(HPIP_Max/100-Performance)/(HPIP_Max/100-HPIP_Min/100))*4,&lt;BR /&gt;if(Performance&amp;gt;=HPIP_Min/100,5,0))&amp;lt;0.99,0,if(if(HPIP_Max&amp;lt;&amp;gt;HPIP_Min,1+(1-(HPIP_Max/100-Performance)/(HPIP_Max/100-HPIP_Min/100))*4,&lt;BR /&gt;if(Performance&amp;gt;=HPIP_Min/100,5,0))&amp;gt;5,5,if(HPIP_Max&amp;lt;&amp;gt;HPIP_Min,1+(1-(HPIP_Max/100-Performance)/(HPIP_Max/100-HPIP_Min/100))*4,&lt;BR /&gt;if(Performance&amp;gt;=HPIP_Min/100,5,0))))) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Denominator and Performance are both lables for some calculated expressions. If I want to calculate the average of the above expression, what would be the correct way?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Thank you again for your time and patience.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 17:13:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-Subtotal-of-Pivot-Table/m-p/543493#M480953</guid>
      <dc:creator />
      <dc:date>2013-10-29T17:13:05Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional Subtotal of Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-Subtotal-of-Pivot-Table/m-p/543494#M480954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, the problem that I'm now facing is that for the subtotal row, there is no Threshold values (i.e. HPIP_Max and HPIP_Min) in the performance point calculation formula. I just want it to look at all the row above and get the average of Performance Points. Is there a way to do so?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry for keep bugging you, I'm quite new to QV and there's so much to learn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again for your patience!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 17:20:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-Subtotal-of-Pivot-Table/m-p/543494#M480954</guid>
      <dc:creator />
      <dc:date>2013-10-29T17:20:36Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Conditional Subtotal of Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-Subtotal-of-Pivot-Table/m-p/543495#M480955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be like:&lt;/P&gt;&lt;P&gt;=&lt;/P&gt;&lt;P&gt;If( &lt;/P&gt;&lt;P&gt; Dimensionality&amp;lt;&amp;gt;1,&lt;/P&gt;&lt;P&gt;&amp;nbsp; RangeSum&lt;/P&gt;&lt;P&gt;&amp;nbsp; (&lt;/P&gt;&lt;P&gt; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(Denominator=0,'N/A',if(if(HPIP_Max&amp;lt;&amp;gt;HPIP_Min,1+(1-(HPIP_Max/100-Performance)/(HPIP_Max/100-HPIP_Min/100))*4,&lt;BR /&gt;if(Performance&amp;gt;=HPIP_Min/100,5,0))&amp;lt;0.99,0,if(if(HPIP_Max&amp;lt;&amp;gt;HPIP_Min,1+(1-(HPIP_Max/100-Performance)/(HPIP_Max/100-HPIP_Min/100))*4,&lt;BR /&gt;if(Performance&amp;gt;=HPIP_Min/100,5,0))&amp;gt;5,5,if(HPIP_Max&amp;lt;&amp;gt;HPIP_Min,1+(1-(HPIP_Max/100-Performance)/(HPIP_Max/100-HPIP_Min/100))*4,&lt;BR /&gt;if(Performance&amp;gt;=HPIP_Min/100,5,0)))))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; )&lt;/P&gt;&lt;P&gt;, RangeAvg&lt;/P&gt;&lt;P&gt;&amp;nbsp; (&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(Denominator=0,'N/A',if(if(HPIP_Max&amp;lt;&amp;gt;HPIP_Min,1+(1-(HPIP_Max/100-Performance)/(HPIP_Max/100-HPIP_Min/100))*4,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(Performance&amp;gt;=HPIP_Min/100,5,0))&amp;lt;0.99,0,if(if(HPIP_Max&amp;lt;&amp;gt;HPIP_Min,1+(1-(HPIP_Max/100-Performance)/(HPIP_Max/100-HPIP_Min/100))*4,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(Performance&amp;gt;=HPIP_Min/100,5,0))&amp;gt;5,5,if(HPIP_Max&amp;lt;&amp;gt;HPIP_Min,1+(1-(HPIP_Max/100-Performance)/(HPIP_Max/100-HPIP_Min/100))*4,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(Performance&amp;gt;=HPIP_Min/100,5,0)))))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 19:02:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-Subtotal-of-Pivot-Table/m-p/543495#M480955</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2013-10-29T19:02:45Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Conditional Subtotal of Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-Subtotal-of-Pivot-Table/m-p/543496#M480956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was able to get it work by using avg(agg) function &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks so much!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 21:08:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-Subtotal-of-Pivot-Table/m-p/543496#M480956</guid>
      <dc:creator />
      <dc:date>2013-10-29T21:08:46Z</dc:date>
    </item>
  </channel>
</rss>

