<?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: Visual Cues for Annual Subtotal in a Pivot Table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001402#M340403</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;maybe by using bottom &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="syntax"&gt;&lt;A name="kanchor318"&gt;&lt;/A&gt;&lt;A name="bottom"&gt;&lt;/A&gt;&lt;SPAN class="Bold"&gt;bottom(&lt;/SPAN&gt;&lt;SPAN class="Italic"&gt;[ total ] expression [ , offset [,n ]]&lt;/SPAN&gt;&lt;SPAN class="Bold"&gt;)&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;Returns the value of &lt;SPAN class="Italic"&gt;expression&lt;/SPAN&gt; evaluated with the chart's dimension values as they appear on the last row of the current column segment in a table or, in the case of bitmap charts, in the chart's straight table equivalent. &lt;/P&gt;&lt;P&gt;If the chart is one-dimensional or if the &lt;SPAN class="Italic"&gt;expression&lt;/SPAN&gt; is preceded by the &lt;SPAN class="Bold"&gt;total&lt;/SPAN&gt; qualifier, the current column segment is always equal to the entire column. &lt;/P&gt;&lt;P&gt;If the table or table equivalent has multiple vertical dimensions, the current column segment will include only rows with the same values as the current row in all dimension columns except for the column showing the last dimension in the inter field sort order. The inter field sort order for pivot tables is defined simply by the order of the dimensions from left to right. For other chart types this can be manipulated in the &lt;SPAN class="Bold"&gt;Chart Properties: Sort&lt;/SPAN&gt; dialog. &lt;/P&gt;&lt;P&gt;Specifying an &lt;SPAN class="Italic"&gt;offset&lt;/SPAN&gt; greater than 1 lets you move the evaluation of &lt;SPAN class="Italic"&gt;expression&lt;/SPAN&gt; up to rows above the bottom row. A negative &lt;SPAN class="Italic"&gt;offset&lt;/SPAN&gt; number will actually make the &lt;SPAN class="Bold"&gt;bottom&lt;/SPAN&gt; function equivalent to a &lt;SPAN class="Bold"&gt;top&lt;/SPAN&gt; function with the corresponding positive &lt;SPAN class="Italic"&gt;offset&lt;/SPAN&gt; number. Recursive calls will return NULL. &lt;/P&gt;&lt;P&gt;By specifying a third parameter &lt;SPAN class="Italic"&gt;n&lt;/SPAN&gt; greater than 1, the function will return not one but a range of &lt;SPAN class="Italic"&gt;n&lt;/SPAN&gt; values, one for each of the last &lt;SPAN class="Italic"&gt;n&lt;/SPAN&gt; rows of the current column segment. In this form, the function can be used as an argument to any of the special &lt;A class="MCXref_0"&gt;&lt;EM&gt;Chart Range Functions&lt;/EM&gt;&lt;/A&gt;. &lt;/P&gt;&lt;P class="example"&gt;Examples:&lt;/P&gt;&lt;P class="Code"&gt;bottom( sum( Sales ))&lt;/P&gt;&lt;P class="Code"&gt;bottom( sum( Sales ), 2 )&lt;/P&gt;&lt;P class="Code"&gt;bottom( total sum( Sales ))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Aug 2015 15:03:50 GMT</pubDate>
    <dc:creator>ramoncova06</dc:creator>
    <dc:date>2015-08-26T15:03:50Z</dc:date>
    <item>
      <title>Visual Cues for Annual Subtotal in a Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001397#M340398</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying to identify the ratings that are plus or minus 10% of the corporate average for each year in a pivot table.&amp;nbsp; Both the Major Area and the Year are dimensions in the table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The expressions I'm using for the visual cue for UPPER is Avg(Rating)*1.1 to highlight in green and for LOWER is Avg(Rating)*.90 to highlight in red.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem is that the ratings are highlighted based on the corporate average ratings for ALL the years versus the corporate average rating for EACH year.&amp;nbsp; (For example, 5.64 and 5.67 should also be highlighted in green in year 2012)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the proper expression to highlight cells based on the yearly corporate average versus the average of all the years?&amp;nbsp; Thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/97069_pastedImage_1.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 14:40:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001397#M340398</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-08-26T14:40:21Z</dc:date>
    </item>
    <item>
      <title>Re: Visual Cues for Annual Subtotal in a Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001398#M340399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try: Avg(total &amp;lt;Year&amp;gt; Rating)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 14:46:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001398#M340399</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-08-26T14:46:40Z</dc:date>
    </item>
    <item>
      <title>Re: Visual Cues for Annual Subtotal in a Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001399#M340400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;not sure if it will work but have you tried with total ?&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Avg(total&amp;lt;Year&amp;gt;Rating)*1.1&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 14:56:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001399#M340400</guid>
      <dc:creator>ramoncova06</dc:creator>
      <dc:date>2015-08-26T14:56:00Z</dc:date>
    </item>
    <item>
      <title>Re: Visual Cues for Annual Subtotal in a Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001400#M340401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did try Avg(TOTAL&amp;lt;Year&amp;gt;Rating)*1.1 and it did not work (same result as before)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 15:00:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001400#M340401</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-08-26T15:00:09Z</dc:date>
    </item>
    <item>
      <title>Re: Visual Cues for Annual Subtotal in a Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001401#M340402</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did try Avg(TOTAL&amp;lt;Year&amp;gt;Rating)*1.1 and it did not work (same result as before)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 15:00:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001401#M340402</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-08-26T15:00:38Z</dc:date>
    </item>
    <item>
      <title>Re: Visual Cues for Annual Subtotal in a Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001402#M340403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;maybe by using bottom &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="syntax"&gt;&lt;A name="kanchor318"&gt;&lt;/A&gt;&lt;A name="bottom"&gt;&lt;/A&gt;&lt;SPAN class="Bold"&gt;bottom(&lt;/SPAN&gt;&lt;SPAN class="Italic"&gt;[ total ] expression [ , offset [,n ]]&lt;/SPAN&gt;&lt;SPAN class="Bold"&gt;)&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;Returns the value of &lt;SPAN class="Italic"&gt;expression&lt;/SPAN&gt; evaluated with the chart's dimension values as they appear on the last row of the current column segment in a table or, in the case of bitmap charts, in the chart's straight table equivalent. &lt;/P&gt;&lt;P&gt;If the chart is one-dimensional or if the &lt;SPAN class="Italic"&gt;expression&lt;/SPAN&gt; is preceded by the &lt;SPAN class="Bold"&gt;total&lt;/SPAN&gt; qualifier, the current column segment is always equal to the entire column. &lt;/P&gt;&lt;P&gt;If the table or table equivalent has multiple vertical dimensions, the current column segment will include only rows with the same values as the current row in all dimension columns except for the column showing the last dimension in the inter field sort order. The inter field sort order for pivot tables is defined simply by the order of the dimensions from left to right. For other chart types this can be manipulated in the &lt;SPAN class="Bold"&gt;Chart Properties: Sort&lt;/SPAN&gt; dialog. &lt;/P&gt;&lt;P&gt;Specifying an &lt;SPAN class="Italic"&gt;offset&lt;/SPAN&gt; greater than 1 lets you move the evaluation of &lt;SPAN class="Italic"&gt;expression&lt;/SPAN&gt; up to rows above the bottom row. A negative &lt;SPAN class="Italic"&gt;offset&lt;/SPAN&gt; number will actually make the &lt;SPAN class="Bold"&gt;bottom&lt;/SPAN&gt; function equivalent to a &lt;SPAN class="Bold"&gt;top&lt;/SPAN&gt; function with the corresponding positive &lt;SPAN class="Italic"&gt;offset&lt;/SPAN&gt; number. Recursive calls will return NULL. &lt;/P&gt;&lt;P&gt;By specifying a third parameter &lt;SPAN class="Italic"&gt;n&lt;/SPAN&gt; greater than 1, the function will return not one but a range of &lt;SPAN class="Italic"&gt;n&lt;/SPAN&gt; values, one for each of the last &lt;SPAN class="Italic"&gt;n&lt;/SPAN&gt; rows of the current column segment. In this form, the function can be used as an argument to any of the special &lt;A class="MCXref_0"&gt;&lt;EM&gt;Chart Range Functions&lt;/EM&gt;&lt;/A&gt;. &lt;/P&gt;&lt;P class="example"&gt;Examples:&lt;/P&gt;&lt;P class="Code"&gt;bottom( sum( Sales ))&lt;/P&gt;&lt;P class="Code"&gt;bottom( sum( Sales ), 2 )&lt;/P&gt;&lt;P class="Code"&gt;bottom( total sum( Sales ))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 15:03:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001402#M340403</guid>
      <dc:creator>ramoncova06</dc:creator>
      <dc:date>2015-08-26T15:03:50Z</dc:date>
    </item>
    <item>
      <title>Re: Visual Cues for Annual Subtotal in a Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001403#M340404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ramon, unfortunately, the bottom function didn't work either.  Thanks for &lt;/P&gt;&lt;P&gt;trying!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Holly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This message is intended for use only by the person(s) addressed above and &lt;/P&gt;&lt;P&gt;may contain privileged and confidential information. Disclosure or use of &lt;/P&gt;&lt;P&gt;this message by any other person is strictly prohibited. If this message &lt;/P&gt;&lt;P&gt;is received in error, please notify the sender immediately and delete this &lt;/P&gt;&lt;P&gt;message.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 15:19:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001403#M340404</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-08-26T15:19:00Z</dc:date>
    </item>
    <item>
      <title>Re: Visual Cues for Annual Subtotal in a Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001404#M340405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;could you share an example ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 15:42:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001404#M340405</guid>
      <dc:creator>ramoncova06</dc:creator>
      <dc:date>2015-08-26T15:42:20Z</dc:date>
    </item>
    <item>
      <title>Re: Visual Cues for Annual Subtotal in a Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001405#M340406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The expression you specify in Visual Cue is not aware of the dimensions so Year and Major Area are not considered at all - that is why you get the total corporate for all years.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However you could achieve what you want by abandoning the Visual Cues tab and go to your Expressions tab - select your expression and expand the plus to the left of the expression so you will find "Background Color" - select this and then you will have a corresponding Definition on the right where you could put your expression. This expression will be evaluated in context instead of out of context as with Visual Cues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the Definition has to look&amp;nbsp; something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If( Avg( Rating ) &amp;gt; Avg( TOTAL &amp;lt;Year&amp;gt; Rating ) *1.1 , Green(30) , If ( Avg( Rating ) &amp;lt; Avg( TOTAL &amp;lt;Year&amp;gt; Rating ) * 0.9 , Red(30) ) )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 16:10:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001405#M340406</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-08-26T16:10:43Z</dc:date>
    </item>
    <item>
      <title>Re: Visual Cues for Annual Subtotal in a Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001406#M340407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Petter, brilliant!  That did the trick... thanks for clarifying the issue &lt;/P&gt;&lt;P&gt;and providing the solution!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Holly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This message is intended for use only by the person(s) addressed above and &lt;/P&gt;&lt;P&gt;may contain privileged and confidential information. Disclosure or use of &lt;/P&gt;&lt;P&gt;this message by any other person is strictly prohibited. If this message &lt;/P&gt;&lt;P&gt;is received in error, please notify the sender immediately and delete this &lt;/P&gt;&lt;P&gt;message.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 17:04:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001406#M340407</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-08-26T17:04:00Z</dc:date>
    </item>
    <item>
      <title>Re: Visual Cues for Annual Subtotal in a Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001407#M340408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Glad to help. Please close the thread by marking it as answered &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 17:33:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001407#M340408</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-08-26T17:33:06Z</dc:date>
    </item>
    <item>
      <title>Re: Visual Cues for Annual Subtotal in a Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001408#M340409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was kind of hoping to score some points for my effort. But since you marked the question as "Assumed Answered" you didn't credit anyone for helping you to solve this...&amp;nbsp; &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 18:21:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001408#M340409</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-08-26T18:21:37Z</dc:date>
    </item>
    <item>
      <title>Re: Visual Cues for Annual Subtotal in a Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001409#M340410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Petter, sorry, I thought that was the way to close the thread.  What &lt;/P&gt;&lt;P&gt;should I do?  I didn't see any other way of "closing" this.  I certainly &lt;/P&gt;&lt;P&gt;want you to receive credit for your solution... please tell me what I &lt;/P&gt;&lt;P&gt;should do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Holly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 19:54:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001409#M340410</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-08-26T19:54:24Z</dc:date>
    </item>
    <item>
      <title>Re: Visual Cues for Annual Subtotal in a Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001410#M340411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you pressed "Mark as Correct" at one of your comments or at your question instead of pressing the "Mark as Correct" on my comment. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There should be an gray button that says "Unmark as Correct" in the place where you marked it initially as correct. If you press that you could reassign it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;br&lt;/P&gt;&lt;P&gt;Petter S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 20:50:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001410#M340411</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-08-26T20:50:22Z</dc:date>
    </item>
    <item>
      <title>Re: Visual Cues for Annual Subtotal in a Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001411#M340412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much for such simple solution. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jun 2018 11:04:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Visual-Cues-for-Annual-Subtotal-in-a-Pivot-Table/m-p/1001411#M340412</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-06-20T11:04:37Z</dc:date>
    </item>
  </channel>
</rss>

