<?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: Is this Bug? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Is-this-Bug/m-p/1088652#M362286</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I Actually tried that earlier but as the expression was showing as error did not apply , but just noticed that even though it shows errors the chart works&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/116916_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 04 Mar 2016 01:06:13 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-03-04T01:06:13Z</dc:date>
    <item>
      <title>Is this Bug?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-this-Bug/m-p/1088650#M362284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have spent almost whole day in trying to figure out the difference between 2 tables in the attached Application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have 2 columns in the table to display status color in the Back ground . TP99 Status and FCI Status&lt;/P&gt;&lt;P&gt;the logic for coloring these 2 columns is :&lt;/P&gt;&lt;P&gt;for TP99 Status:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF TP99 &amp;gt; SLA_TP99 or isnull(SLA_TP99)THEN Red&lt;BR /&gt; IF TP99 &amp;lt;= SLA_TP99 THEN Green &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for FCI Status: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF FCI &amp;gt; SLA_FCI or isnull(SLA_FCI)THEN Red&lt;/P&gt;&lt;P&gt; IF FCI &amp;lt;= SLA_FCI THEN Green &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This was working fine for until I changed the labels of the expressions SLA_TP99 to SLA TP99 and FCI_SLA to FCI SLA&lt;/P&gt;&lt;P&gt;I just removed&amp;nbsp; underscore from the label and all the color coding is messed up , please compare the 2 charts by clicking on service API value, 1 chart changes the color and the other disables the color code and display correct color only for selected values.&lt;/P&gt;&lt;P&gt;Is this something that can be fixed?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Mar 2016 00:09:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-this-Bug/m-p/1088650#M362284</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-03-04T00:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: Is this Bug?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-this-Bug/m-p/1088651#M362285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your Background color expressions as well as the two regular expressions, you use an IsNull() call. IsNull() is not an aggregation function, so it will try to refer to an expression outcome (by way of the expression label) or a field name with an implied-but-invisible Only() call. In the upper table, the IsNull() parameter exists as an expression label, so it will use that one in both the regular expression as well as in the Background color expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the bottom table, you have changed the label name of the expression that is referenced in the IsNull() call. The existing parameter of IsNull() now refers to a field that may and will return multiple values that will be treated as a NULL value by a non-aggregating function like IsNull. The result will be unpredictable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Solution: in all IsNull() calls, change the parameter to the changed label and add square brackets around the label (because of the space). Like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;... IsNull([SLA FCI]) ...&amp;nbsp; // new expression label&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;instead of&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px; font-family: 'courier new', courier;"&gt;... IsNull(SLA_FCI) ... // old label, doesn't exist anymore&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;And yes, those almost-hidden expressions like for a Background color can quickly become a PITA if you start changing label or field names.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Best,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Peter&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Mar 2016 00:52:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-this-Bug/m-p/1088651#M362285</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2016-03-04T00:52:26Z</dc:date>
    </item>
    <item>
      <title>Re: Is this Bug?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-this-Bug/m-p/1088652#M362286</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I Actually tried that earlier but as the expression was showing as error did not apply , but just noticed that even though it shows errors the chart works&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/116916_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Mar 2016 01:06:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-this-Bug/m-p/1088652#M362286</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-03-04T01:06:13Z</dc:date>
    </item>
    <item>
      <title>Re: Is this Bug?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-this-Bug/m-p/1088653#M362287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Don't worry about any imaginary expression errors. Those are common and in your case caused by the $-sign substitution. The syntax checker will not do $-sign expansion to check whether $(cRed) is okay in this spot or contains something "illegal". It gets stuck, and considers this unexpected piece of text an error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Mar 2016 01:11:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-this-Bug/m-p/1088653#M362287</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2016-03-04T01:11:22Z</dc:date>
    </item>
  </channel>
</rss>

