<?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 Color in Gauge Chart in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Color-in-Gauge-Chart/m-p/494512#M184971</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;I am trying to show a bar in a straight table which has its color depending on a value&lt;/P&gt;&lt;P&gt;e.g. red if below 1 and green if above it&lt;/P&gt;&lt;P&gt;&lt;IMG alt="gauge.PNG.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/50548_gauge.PNG.png" /&gt;&lt;/P&gt;&lt;P&gt;I have adjusted the gauge setting to:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="gauge_2.PNG.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/50553_gauge_2.PNG.png" style="width: 620px; height: 404px;" /&gt;&lt;/P&gt;&lt;P&gt;the bar however always shows up in green? In the first 2 rows I wanted it to be red().&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Dec 2013 12:45:14 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-12-17T12:45:14Z</dc:date>
    <item>
      <title>Color in Gauge Chart</title>
      <link>https://community.qlik.com/t5/QlikView/Color-in-Gauge-Chart/m-p/494512#M184971</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;I am trying to show a bar in a straight table which has its color depending on a value&lt;/P&gt;&lt;P&gt;e.g. red if below 1 and green if above it&lt;/P&gt;&lt;P&gt;&lt;IMG alt="gauge.PNG.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/50548_gauge.PNG.png" /&gt;&lt;/P&gt;&lt;P&gt;I have adjusted the gauge setting to:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="gauge_2.PNG.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/50553_gauge_2.PNG.png" style="width: 620px; height: 404px;" /&gt;&lt;/P&gt;&lt;P&gt;the bar however always shows up in green? In the first 2 rows I wanted it to be red().&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Dec 2013 12:45:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Color-in-Gauge-Chart/m-p/494512#M184971</guid>
      <dc:creator />
      <dc:date>2013-12-17T12:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: Color in Gauge Chart</title>
      <link>https://community.qlik.com/t5/QlikView/Color-in-Gauge-Chart/m-p/494513#M184972</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;use sum in our expression, now it will count FinanzenA.Wert and it always 1.&lt;/P&gt;&lt;P&gt;like this if(sum(FinanzenA.Wert &amp;lt;1,red(),green()))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and maybe you shold use aggr on your dimension, like if(aggr(sum(FinanzenA.Wert),FinanzenA.Bezeichner)&amp;lt;1........&lt;/P&gt;&lt;P&gt;//Staffan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Dec 2013 13:10:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Color-in-Gauge-Chart/m-p/494513#M184972</guid>
      <dc:creator>stabben23</dc:creator>
      <dc:date>2013-12-17T13:10:50Z</dc:date>
    </item>
    <item>
      <title>Re: Color in Gauge Chart</title>
      <link>https://community.qlik.com/t5/QlikView/Color-in-Gauge-Chart/m-p/494514#M184973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;the formula you gave looks to have a syntax problem&lt;/P&gt;&lt;P&gt;I used&amp;nbsp; if&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;FinanzenA.Wert&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &amp;lt; 1, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;red&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(), &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;green&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;()) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;but this does not change the color either&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Juerg&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Dec 2013 13:22:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Color-in-Gauge-Chart/m-p/494514#M184973</guid>
      <dc:creator />
      <dc:date>2013-12-17T13:22:12Z</dc:date>
    </item>
    <item>
      <title>Re: Color in Gauge Chart</title>
      <link>https://community.qlik.com/t5/QlikView/Color-in-Gauge-Chart/m-p/494515#M184974</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;use a aggr function if(sum(aggr(sum(FinanzenA.Wert),FinanzenA.Bezeichner)&amp;lt;1,red(),green()))&lt;/P&gt;&lt;P&gt;//Staffan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Dec 2013 13:29:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Color-in-Gauge-Chart/m-p/494515#M184974</guid>
      <dc:creator>stabben23</dc:creator>
      <dc:date>2013-12-17T13:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: Color in Gauge Chart</title>
      <link>https://community.qlik.com/t5/QlikView/Color-in-Gauge-Chart/m-p/494516#M184975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Staffan for your quick replies - however your formula still has a syntax problem and my changes to make it work have so far been of no success&lt;/P&gt;&lt;P&gt;Juerg&lt;/P&gt;&lt;P&gt;P.S. just saw that the color adjust correctly if only a single row is selected ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Dec 2013 13:44:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Color-in-Gauge-Chart/m-p/494516#M184975</guid>
      <dc:creator />
      <dc:date>2013-12-17T13:44:22Z</dc:date>
    </item>
  </channel>
</rss>

