<?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: Color is not shown correctly!! in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700254#M1060063</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HEy,&lt;/P&gt;&lt;P&gt;I cannot open your qvw. Can you tell me here what to do.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Oct 2014 09:17:56 GMT</pubDate>
    <dc:creator>nikhilgarg</dc:creator>
    <dc:date>2014-10-10T09:17:56Z</dc:date>
    <item>
      <title>Color is not shown correctly!!</title>
      <link>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700242#M1060051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have attached a samplpe of application. In that i am using expression to color the values above and below threshhold as RED.&lt;/P&gt;&lt;P&gt;And in between threshhold as BLACK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(Sum(Price) &amp;gt; (Avg(Price) + Avg(Price)*0.02) , RGB(255,0,0),&lt;/P&gt;&lt;P&gt;if(Sum(Price) &amp;lt;&amp;nbsp; (Avg(Price) - Avg(Price)*0.02) , RGB(255,0,0),&lt;/P&gt;&lt;P&gt;if(Sum(Price) &amp;gt;= ((Avg(Price) - Avg(Price)*0.02) and (Sum(Price) &amp;lt;= (Avg(Price) + Avg(Price)*0.02) , RGB(0,0,0),&lt;/P&gt;&lt;P&gt;)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But same is not happening . Please see...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2014 08:03:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700242#M1060051</guid>
      <dc:creator>nikhilgarg</dc:creator>
      <dc:date>2014-10-10T08:03:50Z</dc:date>
    </item>
    <item>
      <title>Re: Color is not shown correctly!!</title>
      <link>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700243#M1060052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Nikhil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RGB is working well. I think that the problem is that the condition &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;EM&gt;if(Sum(Price) &amp;gt;= ((Avg(Price) - Avg(Price)*0.02) and (Sum(Price) &amp;lt;= (Avg(Price) + Avg(Price)*0.02) &lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;is never TRUE and that is the reason why it does not show black.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Hth.&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2014 08:16:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700243#M1060052</guid>
      <dc:creator>salto</dc:creator>
      <dc:date>2014-10-10T08:16:24Z</dc:date>
    </item>
    <item>
      <title>Re: Color is not shown correctly!!</title>
      <link>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700244#M1060053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(Sum(Price) &amp;gt; (Avg(Price) + Avg(Price)*0.02) , RGB(255,0,0),&lt;/P&gt;&lt;P&gt;if(Sum(Price) &amp;lt;&amp;nbsp; (Avg(Price) - Avg(Price)*0.02) , RGB(255,0,0), RGB(0,0,0),&lt;/P&gt;&lt;P&gt;))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Remove this condition&lt;/P&gt;&lt;P&gt;if(Sum(Price) &amp;gt;= ((Avg(Price) - Avg(Price)*0.02) and (Sum(Price) &amp;lt;= (Avg(Price) + Avg(Price)*0.02),&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2014 08:23:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700244#M1060053</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2014-10-10T08:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: Color is not shown correctly!!</title>
      <link>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700245#M1060054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;it is also not working.&lt;/P&gt;&lt;P&gt;What should i do ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2014 08:25:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700245#M1060054</guid>
      <dc:creator>nikhilgarg</dc:creator>
      <dc:date>2014-10-10T08:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: Color is not shown correctly!!</title>
      <link>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700246#M1060055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi NiKhil,&lt;/P&gt;&lt;P&gt;I correct espression [- ',' + 2')'], but I don't know if it work well. I see only red.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2014 08:26:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700246#M1060055</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2014-10-10T08:26:35Z</dc:date>
    </item>
    <item>
      <title>Re: Color is not shown correctly!!</title>
      <link>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700247#M1060056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I cannot open your qvw.Can you tell me here.&lt;/P&gt;&lt;P&gt;Thanx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2014 08:45:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700247#M1060056</guid>
      <dc:creator>nikhilgarg</dc:creator>
      <dc:date>2014-10-10T08:45:01Z</dc:date>
    </item>
    <item>
      <title>Re: Color is not shown correctly!!</title>
      <link>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700248#M1060057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="Img.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/68662_Img.png" style="width: 620px; height: 85px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2014 08:57:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700248#M1060057</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2014-10-10T08:57:42Z</dc:date>
    </item>
    <item>
      <title>Re: Color is not shown correctly!!</title>
      <link>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700249#M1060058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the example of Antonio works well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if((Sum(Price) &amp;gt; (Avg(Price) + Avg(Price)*0.02)) , RGB(10,410,0), if(Sum(Price) &amp;lt;&amp;nbsp; (Avg(Price) - Avg(Price)*0.02) , RGB(25,80,100),&lt;/P&gt;&lt;P&gt;if(Sum(Price) &amp;gt;= (Avg(Price) - Avg(Price)*0.02) and Sum(Price) &amp;gt;= (Avg(Price) + Avg(Price)*0.02), RGB(0,255,80)&lt;/P&gt;&lt;P&gt;)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I changed the values of RGB to demostrate it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;JAG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2014 09:00:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700249#M1060058</guid>
      <dc:creator>sorrakis01</dc:creator>
      <dc:date>2014-10-10T09:00:21Z</dc:date>
    </item>
    <item>
      <title>Re: Color is not shown correctly!!</title>
      <link>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700250#M1060059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is bracket missing in your expression.&lt;/P&gt;&lt;P&gt;You can correct your expression by giving proper bracket closing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try Like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(Sum(Price) &amp;gt; (Avg(Price) + Avg(Price)*0.02) , RGB(255,0,0),&lt;/P&gt;&lt;P&gt;if(Sum(Price) &amp;lt; (Avg(Price) - Avg(Price)*0.02) , RGB(255,0,0),&lt;/P&gt;&lt;P&gt;if(Sum(Price) &amp;gt;= ((Avg(Price) - Avg(Price)*0.02)&lt;STRONG&gt;)&lt;/STRONG&gt; and (Sum(Price) &amp;lt;= (Avg(Price) + Avg(Price)*0.02)&lt;STRONG&gt;)&lt;/STRONG&gt; , RGB(0,0,0),&lt;/P&gt;&lt;P&gt;)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or modify it like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;=if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Sum&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Price&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &amp;gt;= ((&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Avg&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Price&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) - &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Avg&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Price&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;)*0.02)) &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;and&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Sum&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Price&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &amp;lt;= (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Avg&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Price&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) + &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Avg&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Price&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;)*0.02)),&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;RGB&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(0,0,0),&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Sum&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Price&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &amp;gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Avg&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Price&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) + &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Avg&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Price&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;)*0.02),&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;RGB&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(255,0,0),&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Sum&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Price&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &amp;lt;&amp;nbsp; (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Avg&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Price&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) - &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Avg&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Price&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;)*0.02) , &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;RGB&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(255,255,255),&lt;BR /&gt;))) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;or&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;you can try this also&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;=if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Sum&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Price&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &amp;gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Avg&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Price&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) + &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Avg&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Price&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;)*0.02) , &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;RGB&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(255,0,0),&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Sum&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Price&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &amp;lt;&amp;nbsp; (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Avg&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Price&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) - &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Avg&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Price&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;)*0.02) , &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;RGB&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(255,255,255), &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;RGB&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(0,0,0)&lt;BR /&gt;))&lt;BR /&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;and check your logic which you are comparing in &lt;STRONG&gt;if. &lt;/STRONG&gt;I am not sure that it is working proper.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Kind Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2014 09:04:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700250#M1060059</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2014-10-10T09:04:13Z</dc:date>
    </item>
    <item>
      <title>Re: Color is not shown correctly!!</title>
      <link>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700251#M1060060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HEy,&lt;/P&gt;&lt;P&gt;It is still not working. I mean ,&amp;nbsp; I want the values above High threshhold and below Low threshhold as RED and between High threshhold and LowThreshhold as BLACK. PRice is my field.&lt;/P&gt;&lt;P&gt;How to do this ???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2014 09:04:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700251#M1060060</guid>
      <dc:creator>nikhilgarg</dc:creator>
      <dc:date>2014-10-10T09:04:19Z</dc:date>
    </item>
    <item>
      <title>Re: Color is not shown correctly!!</title>
      <link>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700252#M1060061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HEy,&lt;/P&gt;&lt;P&gt;It is not working well.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I mean ,&amp;nbsp; I want the values above High threshhold and below Low threshhold as RED and between High threshhold and LowThreshhold as BLACK. PRice is my field.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;How to do this ???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2014 09:05:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700252#M1060061</guid>
      <dc:creator>nikhilgarg</dc:creator>
      <dc:date>2014-10-10T09:05:06Z</dc:date>
    </item>
    <item>
      <title>Re: Color is not shown correctly!!</title>
      <link>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700253#M1060062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nikhil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look at the attached qvw.&lt;/P&gt;&lt;P&gt;The first 2 conditions you have in the color expression are never true. you can see clearly in the chart.&lt;/P&gt;&lt;P&gt;thats why always 3rd conditrion is true and it remains the same color, you might have to relook at the conditions mentioned in color expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Shruthi Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2014 09:10:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700253#M1060062</guid>
      <dc:creator />
      <dc:date>2014-10-10T09:10:42Z</dc:date>
    </item>
    <item>
      <title>Re: Color is not shown correctly!!</title>
      <link>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700254#M1060063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HEy,&lt;/P&gt;&lt;P&gt;I cannot open your qvw. Can you tell me here what to do.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2014 09:17:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700254#M1060063</guid>
      <dc:creator>nikhilgarg</dc:creator>
      <dc:date>2014-10-10T09:17:56Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Color is not shown correctly!!</title>
      <link>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700255#M1060064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you look at the attached image, its a graph with two more expressions added in your qvw.&lt;/P&gt;&lt;P&gt;so the "(Avg(Price) + Avg(Price)*0.02 )" is always greater than sum(Price) and&lt;/P&gt;&lt;P&gt;"(Avg(Price) - Avg(Price)*0.02 )" is always less than sum (price)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but the expression you used for color&lt;/P&gt;&lt;P&gt;=if(Sum(Price) &amp;gt; (Avg(Price) + Avg(Price)*0.02 ), RGB(255,0,0),&lt;/P&gt;&lt;P&gt;if(Sum(Price) &amp;lt;&amp;nbsp; (Avg(Price) - Avg(Price)*0.02 ), RGB(255,0,0),&lt;/P&gt;&lt;P&gt;if((Sum(Price) &amp;gt;= (Avg(Price) - Avg(Price)*0.02) and Sum(Price) &amp;lt;= (Avg(Price) + Avg(Price)*0.02)) ,rgb(0,0,0))))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the first two conditions are never true so you alwasy get&amp;nbsp; a single color.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Shruthi Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2014 09:22:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700255#M1060064</guid>
      <dc:creator />
      <dc:date>2014-10-10T09:22:54Z</dc:date>
    </item>
    <item>
      <title>Re: Color is not shown correctly!!</title>
      <link>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700256#M1060065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="Img.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/68673_Img.png" style="width: 620px; height: 164px;" /&gt;&lt;IMG alt="Img1.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/68672_Img1.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2014 09:25:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700256#M1060065</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2014-10-10T09:25:57Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Color is not shown correctly!!</title>
      <link>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700257#M1060066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;I want to compare the Price field with High Threshhold(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f6f6f6;"&gt;(Avg(Price) + Avg(Price)*0.02 )&lt;/SPAN&gt;) and Low Threshhold(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f6f6f6;"&gt;(Avg(Price) - Avg(Price)*0.02 )&lt;/SPAN&gt;)&amp;nbsp; and put color accordingly.&lt;/P&gt;&lt;P&gt;What should i do ??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2014 09:26:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700257#M1060066</guid>
      <dc:creator>nikhilgarg</dc:creator>
      <dc:date>2014-10-10T09:26:20Z</dc:date>
    </item>
    <item>
      <title>Re: Color is not shown correctly!!</title>
      <link>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700258#M1060067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;thanks a lot for this. But what does TOTAL makes a difference ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was using Sum(Price)/Count(Price)&amp;nbsp; for average . Was that wrong ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please tell&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2014 09:32:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700258#M1060067</guid>
      <dc:creator>nikhilgarg</dc:creator>
      <dc:date>2014-10-10T09:32:03Z</dc:date>
    </item>
    <item>
      <title>Re: Color is not shown correctly!!</title>
      <link>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700259#M1060068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I simplify.&lt;/P&gt;&lt;P&gt;You need TOTAL to get all dimension values.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Antonio&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2014 09:41:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Color-is-not-shown-correctly/m-p/700259#M1060068</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2014-10-10T09:41:54Z</dc:date>
    </item>
  </channel>
</rss>

