<?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 Qlikview Pivot table , liner gauge chart segment color by dimension in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Qlikview-Pivot-table-liner-gauge-chart-segment-color-by/m-p/1424372#M429202</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm working on qlikview document,&amp;nbsp; we have a pivot table and one expression is as liner gauge chart, the thing is that&amp;nbsp; the liner gauge chart segment color should be calculated by dimension value, If dimension field &lt;STRONG&gt;"dim"&lt;/STRONG&gt; contains the values A, B, C the liner gauge chart segment color should be: for value A-red, B-green, C-blue. &lt;/P&gt;&lt;P&gt;in the segment color expression i wrote the code &lt;/P&gt;&lt;P&gt;if(dim='A',red(), black()) but for all dimension the color is black&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please need kind help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="example.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/175281_example.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 01 Sep 2017 10:17:06 GMT</pubDate>
    <dc:creator>davidgabisonia</dc:creator>
    <dc:date>2017-09-01T10:17:06Z</dc:date>
    <item>
      <title>Qlikview Pivot table , liner gauge chart segment color by dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Pivot-table-liner-gauge-chart-segment-color-by/m-p/1424372#M429202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm working on qlikview document,&amp;nbsp; we have a pivot table and one expression is as liner gauge chart, the thing is that&amp;nbsp; the liner gauge chart segment color should be calculated by dimension value, If dimension field &lt;STRONG&gt;"dim"&lt;/STRONG&gt; contains the values A, B, C the liner gauge chart segment color should be: for value A-red, B-green, C-blue. &lt;/P&gt;&lt;P&gt;in the segment color expression i wrote the code &lt;/P&gt;&lt;P&gt;if(dim='A',red(), black()) but for all dimension the color is black&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please need kind help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="example.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/175281_example.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Sep 2017 10:17:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Pivot-table-liner-gauge-chart-segment-color-by/m-p/1424372#M429202</guid>
      <dc:creator>davidgabisonia</dc:creator>
      <dc:date>2017-09-01T10:17:06Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview Pivot table , liner gauge chart segment color by dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Pivot-table-liner-gauge-chart-segment-color-by/m-p/1424373#M429203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi David,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please use below condition in Dimension Color Properties by clicking on "+" icon to expand.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=IF( DIM = 'A',red(),if(DIM = 'B',Green(),if(DIM = 'C',Blue(),'')))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Sep 2017 11:59:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Pivot-table-liner-gauge-chart-segment-color-by/m-p/1424373#M429203</guid>
      <dc:creator>farru_scorpio</dc:creator>
      <dc:date>2017-09-03T11:59:29Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview Pivot table , liner gauge chart segment color by dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Pivot-table-liner-gauge-chart-segment-color-by/m-p/1424374#M429204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pick(wildmatch(Dim,'A','B','C'),RGB(255,0,0),RGB(0,0,255),RGB(0,128,0))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pick(wildmatch(Dim,'A','B','C'),Red(),Green(),Blue())&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Sep 2017 13:03:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Pivot-table-liner-gauge-chart-segment-color-by/m-p/1424374#M429204</guid>
      <dc:creator>rohitraut</dc:creator>
      <dc:date>2017-09-03T13:03:00Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview Pivot table , liner gauge chart segment color by dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Pivot-table-liner-gauge-chart-segment-color-by/m-p/1424375#M429205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Thanks for your suggestions.&lt;/P&gt;&lt;P&gt;It does not take any effect, it's seem that the liner gauge segment color expression does not reacts on dimension value in the pivot table.&lt;/P&gt;&lt;P&gt;it's the link of sample qlikview document&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive.google.com/open?id=0B4RmFJPymq2NY2xOTW0zblNkNDg" title="https://drive.google.com/open?id=0B4RmFJPymq2NY2xOTW0zblNkNDg"&gt;sample.qvw - Google Drive&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the pivot table, I want to change the liner gauge segment color depending on the dimension value, for example for DIM Camel it must be red !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Sep 2017 08:51:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Pivot-table-liner-gauge-chart-segment-color-by/m-p/1424375#M429205</guid>
      <dc:creator>davidgabisonia</dc:creator>
      <dc:date>2017-09-05T08:51:40Z</dc:date>
    </item>
  </channel>
</rss>

