<?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: Expression property Text Color not working in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Expression-property-Text-Color-not-working/m-p/667026#M1082531</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A hughe thank you to everybody who has contributed to accomplish the correct result.&lt;/P&gt;&lt;P&gt;It's working fine now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You're all the best &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 27 Jun 2014 11:45:19 GMT</pubDate>
    <dc:creator>amber2000</dc:creator>
    <dc:date>2014-06-27T11:45:19Z</dc:date>
    <item>
      <title>Expression property Text Color not working</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-property-Text-Color-not-working/m-p/667021#M1082524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a problem with the property 'Text Color' of an expression.&lt;/P&gt;&lt;P&gt;The expression result is a %, when the % is &amp;gt;= 1 the text color should be green, if not then the text color should be red.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the function I'm using to acomplish that but every value turned red.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt;"&gt;(((&lt;SPAN style="color: #800000;"&gt;[#Gecontroleerde_Colli]&lt;/SPAN&gt;) / (&lt;SPAN style="color: #800000;"&gt;[#Colli_Picked]&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN style="font-size: 12pt;"&gt;) &amp;gt;= '1.00'),green(),red()) &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;8,30% should be green&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;0,09% should be red (this is ok)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;0,18% ok&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;0,15% ok&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;4,49% should be green&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Am I doing something wrong here, can someone please advice??? Included is a small testfile so it's better to understand what I'm trying to do.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Thanks in advance,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Monique&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jun 2014 10:15:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression-property-Text-Color-not-working/m-p/667021#M1082524</guid>
      <dc:creator>amber2000</dc:creator>
      <dc:date>2014-06-27T10:15:36Z</dc:date>
    </item>
    <item>
      <title>Re: Expression property Text Color not working</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-property-Text-Color-not-working/m-p/667022#M1082526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Monique,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your main expression you multiple by 100. If you do the same in your color expression you'll get 8,3 in green. Alternatively you can change the &amp;gt;= 1.0 to &amp;gt;= 0.01&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;= if(([Gecontroleerde_Colli] / [Colli_Picked])*100 &amp;gt;1.0,green(),red())&lt;/P&gt;&lt;P&gt;= if([Gecontroleerde_Colli] / [Colli_Picked] &amp;gt; 0.01 ,green(),red())&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jun 2014 10:24:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression-property-Text-Color-not-working/m-p/667022#M1082526</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2014-06-27T10:24:33Z</dc:date>
    </item>
    <item>
      <title>Re: Expression property Text Color not working</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-property-Text-Color-not-working/m-p/667023#M1082528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amber,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of doing it using expression for the text color, you can make use of visual cues tab and get this done.&lt;/P&gt;&lt;P&gt;PFA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sabal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jun 2014 10:28:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression-property-Text-Color-not-working/m-p/667023#M1082528</guid>
      <dc:creator />
      <dc:date>2014-06-27T10:28:36Z</dc:date>
    </item>
    <item>
      <title>Re: Expression property Text Color not working</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-property-Text-Color-not-working/m-p/667024#M1082529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Amber&lt;/P&gt;&lt;P&gt;Write the following Exp&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;in Text color of Exp&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG&gt;if&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;(((&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Gecontroleerde_Colli]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) / (&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Colli_Picked]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;)) &amp;gt;= '1',&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;rgb&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(0,250,0),&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;RGB&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;STRONG&gt;(250,0,0)) &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jun 2014 10:30:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression-property-Text-Color-not-working/m-p/667024#M1082529</guid>
      <dc:creator>sasikanth</dc:creator>
      <dc:date>2014-06-27T10:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: Expression property Text Color not working</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-property-Text-Color-not-working/m-p/667025#M1082530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Monique&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also you have used incorrect decimal and thousand separator in the Number tab. Have corrected them in my qvw.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jun 2014 10:31:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression-property-Text-Color-not-working/m-p/667025#M1082530</guid>
      <dc:creator />
      <dc:date>2014-06-27T10:31:10Z</dc:date>
    </item>
    <item>
      <title>Re: Expression property Text Color not working</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-property-Text-Color-not-working/m-p/667026#M1082531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A hughe thank you to everybody who has contributed to accomplish the correct result.&lt;/P&gt;&lt;P&gt;It's working fine now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You're all the best &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jun 2014 11:45:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression-property-Text-Color-not-working/m-p/667026#M1082531</guid>
      <dc:creator>amber2000</dc:creator>
      <dc:date>2014-06-27T11:45:19Z</dc:date>
    </item>
  </channel>
</rss>

