<?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: Background Color in Pivot table not always work. in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Background-Color-in-Pivot-table-not-always-work/m-p/399952#M559366</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;Thank you for reply but it deos not work. I must divide htis data by date, So when I will move date it is still not working properly...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attaching your file with change I need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Kuba&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Jun 2013 12:21:04 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-06-07T12:21:04Z</dc:date>
    <item>
      <title>Background Color in Pivot table not always work.</title>
      <link>https://community.qlik.com/t5/QlikView/Background-Color-in-Pivot-table-not-always-work/m-p/399943#M559357</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 have a pivot table and Color Code column there which background should be same as text in the field...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have implemented it this way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=IF(ColorCode='Green',RGB(171,255,199),&lt;/P&gt;&lt;P&gt;IF(ColorCode='Orange',RGB(255,231,132),&lt;/P&gt;&lt;P&gt;IF(ColorCode='Red',RGB(255,186,165),&lt;/P&gt;&lt;P&gt;IF(ColorCode='Blue',RGB(148,205,249),&lt;/P&gt;&lt;P&gt;RGB(255,255,255)&lt;/P&gt;&lt;P&gt;))))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, strangely, there are fields which are not colored:&lt;/P&gt;&lt;P&gt;(attached image)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EDIT:&lt;/P&gt;&lt;P&gt;I have now added qvw file for better explanation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for all advice!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 May 2013 09:02:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Background-Color-in-Pivot-table-not-always-work/m-p/399943#M559357</guid>
      <dc:creator />
      <dc:date>2013-05-23T09:02:49Z</dc:date>
    </item>
    <item>
      <title>Re: Background Color in Pivot table not always work.</title>
      <link>https://community.qlik.com/t5/QlikView/Background-Color-in-Pivot-table-not-always-work/m-p/399944#M559358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;add. TRIM,,, may be is that you have space&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=&lt;/P&gt;&lt;P&gt;IF(TRIM(ColorCode)='Green',RGB(171,255,199),&lt;/P&gt;&lt;P&gt;IF(TRIM(ColorCode)='Orange',RGB(255,231,132),&lt;/P&gt;&lt;P&gt;IF(TRIM(ColorCode)='Red',RGB(255,186,165),&lt;/P&gt;&lt;P&gt;IF(TRIM(ColorCode)='Blue',RGB(148,205,249),&lt;/P&gt;&lt;P&gt;RGB(255,255,255)&lt;/P&gt;&lt;P&gt;))))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HOPE THAT SOLVE YOUR PROBLEM, if not, can you add a qvw. example?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 May 2013 09:11:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Background-Color-in-Pivot-table-not-always-work/m-p/399944#M559358</guid>
      <dc:creator>fdelacal</dc:creator>
      <dc:date>2013-05-23T09:11:21Z</dc:date>
    </item>
    <item>
      <title>Re: Background Color in Pivot table not always work.</title>
      <link>https://community.qlik.com/t5/QlikView/Background-Color-in-Pivot-table-not-always-work/m-p/399945#M559359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kuba,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure you try this one yet&lt;/P&gt;&lt;P&gt;=IF(WildMatch(ColorCode,'*Green*'),RGB(171,255,199),&lt;/P&gt;&lt;P&gt;IF(WildMatch(ColorCode,'*Orange*'),RGB(255,231,132),&lt;/P&gt;&lt;P&gt;IF(WildMatch(ColorCode,'*Red*'),RGB(255,186,165),&lt;/P&gt;&lt;P&gt;IF(WildMatch(ColorCode,'*Blue*'),RGB(148,205,249),&lt;/P&gt;&lt;P&gt;RGB(255,255,255)&lt;/P&gt;&lt;P&gt;))))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sokkorn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 May 2013 09:14:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Background-Color-in-Pivot-table-not-always-work/m-p/399945#M559359</guid>
      <dc:creator>Sokkorn</dc:creator>
      <dc:date>2013-05-23T09:14:28Z</dc:date>
    </item>
    <item>
      <title>Re: Background Color in Pivot table not always work.</title>
      <link>https://community.qlik.com/t5/QlikView/Background-Color-in-Pivot-table-not-always-work/m-p/399946#M559360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you both for fast reply, ColorCode has only 4 values so this is not (unfortunetly) connected to data mismatch.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will try to prepare some qvw.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Kuba&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 May 2013 09:19:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Background-Color-in-Pivot-table-not-always-work/m-p/399946#M559360</guid>
      <dc:creator />
      <dc:date>2013-05-23T09:19:02Z</dc:date>
    </item>
    <item>
      <title>Re: Background Color in Pivot table not always work.</title>
      <link>https://community.qlik.com/t5/QlikView/Background-Color-in-Pivot-table-not-always-work/m-p/399947#M559361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have now added qvw example.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 May 2013 10:07:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Background-Color-in-Pivot-table-not-always-work/m-p/399947#M559361</guid>
      <dc:creator />
      <dc:date>2013-05-23T10:07:11Z</dc:date>
    </item>
    <item>
      <title>Re: Background Color in Pivot table not always work.</title>
      <link>https://community.qlik.com/t5/QlikView/Background-Color-in-Pivot-table-not-always-work/m-p/399948#M559362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the problem is the pibot date!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see atach.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 May 2013 10:18:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Background-Color-in-Pivot-table-not-always-work/m-p/399948#M559362</guid>
      <dc:creator>fdelacal</dc:creator>
      <dc:date>2013-05-23T10:18:43Z</dc:date>
    </item>
    <item>
      <title>Re: Background Color in Pivot table not always work.</title>
      <link>https://community.qlik.com/t5/QlikView/Background-Color-in-Pivot-table-not-always-work/m-p/399949#M559363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I understnad that, but client wants to see it presented as in initial file... Is there any workaround for that?&lt;/P&gt;&lt;P&gt;This seems like a QV bug.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 May 2013 10:22:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Background-Color-in-Pivot-table-not-always-work/m-p/399949#M559363</guid>
      <dc:creator />
      <dc:date>2013-05-23T10:22:30Z</dc:date>
    </item>
    <item>
      <title>Re: Background Color in Pivot table not always work.</title>
      <link>https://community.qlik.com/t5/QlikView/Background-Color-in-Pivot-table-not-always-work/m-p/399950#M559364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I will bump it, maybe someone else will propose other solution...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Jun 2013 09:24:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Background-Color-in-Pivot-table-not-always-work/m-p/399950#M559364</guid>
      <dc:creator />
      <dc:date>2013-06-04T09:24:24Z</dc:date>
    </item>
    <item>
      <title>Re: Background Color in Pivot table not always work.</title>
      <link>https://community.qlik.com/t5/QlikView/Background-Color-in-Pivot-table-not-always-work/m-p/399951#M559365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kuba,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Please find the attached file hope this will helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nirmal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Jun 2013 12:08:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Background-Color-in-Pivot-table-not-always-work/m-p/399951#M559365</guid>
      <dc:creator />
      <dc:date>2013-06-04T12:08:09Z</dc:date>
    </item>
    <item>
      <title>Re: Background Color in Pivot table not always work.</title>
      <link>https://community.qlik.com/t5/QlikView/Background-Color-in-Pivot-table-not-always-work/m-p/399952#M559366</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;Thank you for reply but it deos not work. I must divide htis data by date, So when I will move date it is still not working properly...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attaching your file with change I need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Kuba&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jun 2013 12:21:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Background-Color-in-Pivot-table-not-always-work/m-p/399952#M559366</guid>
      <dc:creator />
      <dc:date>2013-06-07T12:21:04Z</dc:date>
    </item>
  </channel>
</rss>

