<?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 Pivot Table Error with Unicode Objects - Colour missing in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Pivot-Table-Error-with-Unicode-Objects-Colour-missing/m-p/1862832#M71189</link>
    <description>&lt;P&gt;Having the strangest problem with pivot tables and unicode objects.&lt;/P&gt;
&lt;P&gt;I have a Pivot Table with six dimensions and five columns. The 5th column is a conditional statement&lt;/P&gt;
&lt;P&gt;if($(v.MTD(Actual)) &amp;lt; $(v.MTD(Budget)), chr(10060), chr(9989))&lt;/P&gt;
&lt;P&gt;What is strange is that most of the time the unicode objects appear black and white, it is only when a user hovers over an item, or the pivot table is collapsed fully, do we see any colour.&amp;nbsp;I also have several other Pivot Tables which all have the same problem. This is a new issue which did not exist when the table was built.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="GrantBooth_0-1637725335876.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/67309iEDBC895D7338CAD9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="GrantBooth_0-1637725335876.png" alt="GrantBooth_0-1637725335876.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've checked text colour expression for the measure and it's blank, so that's not the problem, and I've tried creating new ones from scratch and they have the same problem. There are no issues with colour anywhere else in the app.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 24 Nov 2021 03:46:20 GMT</pubDate>
    <dc:creator>GrantBooth</dc:creator>
    <dc:date>2021-11-24T03:46:20Z</dc:date>
    <item>
      <title>Pivot Table Error with Unicode Objects - Colour missing</title>
      <link>https://community.qlik.com/t5/App-Development/Pivot-Table-Error-with-Unicode-Objects-Colour-missing/m-p/1862832#M71189</link>
      <description>&lt;P&gt;Having the strangest problem with pivot tables and unicode objects.&lt;/P&gt;
&lt;P&gt;I have a Pivot Table with six dimensions and five columns. The 5th column is a conditional statement&lt;/P&gt;
&lt;P&gt;if($(v.MTD(Actual)) &amp;lt; $(v.MTD(Budget)), chr(10060), chr(9989))&lt;/P&gt;
&lt;P&gt;What is strange is that most of the time the unicode objects appear black and white, it is only when a user hovers over an item, or the pivot table is collapsed fully, do we see any colour.&amp;nbsp;I also have several other Pivot Tables which all have the same problem. This is a new issue which did not exist when the table was built.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="GrantBooth_0-1637725335876.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/67309iEDBC895D7338CAD9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="GrantBooth_0-1637725335876.png" alt="GrantBooth_0-1637725335876.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've checked text colour expression for the measure and it's blank, so that's not the problem, and I've tried creating new ones from scratch and they have the same problem. There are no issues with colour anywhere else in the app.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Nov 2021 03:46:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Pivot-Table-Error-with-Unicode-Objects-Colour-missing/m-p/1862832#M71189</guid>
      <dc:creator>GrantBooth</dc:creator>
      <dc:date>2021-11-24T03:46:20Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot Table Error with Unicode Objects - Colour missing</title>
      <link>https://community.qlik.com/t5/App-Development/Pivot-Table-Error-with-Unicode-Objects-Colour-missing/m-p/1863106#M71223</link>
      <description>&lt;P&gt;Your comparing of&amp;nbsp;&lt;SPAN&gt;$(v.MTD(Actual)) &amp;lt; $(v.MTD(Budget)) could be invalid on the TOTAL levels and returning then NULL. This could happens if not all calculation-parts of your variables are aggregations, for example by querying there something like: if(AdType = ... On the granular level this could be resolved but on the TOTAL there are then multiple values available and causing the NULL which forced the whole expression to NULL.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;In such a case you will need to wrap the condition with an aggr() like:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;if(sum(aggr($(v.MTD(Actual)) &amp;lt; $(v.MTD(Budget)), AdType)), this, that)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;- Marcus&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Nov 2021 13:29:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Pivot-Table-Error-with-Unicode-Objects-Colour-missing/m-p/1863106#M71223</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2021-11-24T13:29:21Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot Table Error with Unicode Objects - Colour missing</title>
      <link>https://community.qlik.com/t5/App-Development/Pivot-Table-Error-with-Unicode-Objects-Colour-missing/m-p/1863333#M71241</link>
      <description>&lt;P&gt;What are you referring to with AdType?&lt;/P&gt;</description>
      <pubDate>Wed, 24 Nov 2021 23:04:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Pivot-Table-Error-with-Unicode-Objects-Colour-missing/m-p/1863333#M71241</guid>
      <dc:creator>GrantBooth</dc:creator>
      <dc:date>2021-11-24T23:04:15Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot Table Error with Unicode Objects - Colour missing</title>
      <link>https://community.qlik.com/t5/App-Development/Pivot-Table-Error-with-Unicode-Objects-Colour-missing/m-p/1863336#M71242</link>
      <description>&lt;P&gt;The formula used wasn't returning NULL anywhere, this was tested by using the same logic in text colour expression using&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;if($(v.MTD(Actual)) &amp;lt; $(v.MTD(Budget)), red(), green())&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;I was able to solve the problem by using this expression in conditional text colour in column with the emoji.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Nov 2021 23:21:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Pivot-Table-Error-with-Unicode-Objects-Colour-missing/m-p/1863336#M71242</guid>
      <dc:creator>GrantBooth</dc:creator>
      <dc:date>2021-11-24T23:21:30Z</dc:date>
    </item>
  </channel>
</rss>

