<?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: Backgroundcolor in Pivot Tble in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Backgroundcolor-in-Pivot-Tble/m-p/483017#M180516</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vikas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I do this I get &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="expression.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/47783_expression.JPG.jpg" style="width: 620px; height: 373px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Oct 2013 09:58:01 GMT</pubDate>
    <dc:creator>kris_vliegen</dc:creator>
    <dc:date>2013-10-17T09:58:01Z</dc:date>
    <item>
      <title>Backgroundcolor in Pivot Tble</title>
      <link>https://community.qlik.com/t5/QlikView/Backgroundcolor-in-Pivot-Tble/m-p/483012#M180511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a pivot table like this.&lt;/P&gt;&lt;P&gt;Can I change the backgroundcolor per station or per line?&lt;/P&gt;&lt;P&gt;So it's more clear to read this?&lt;/P&gt;&lt;P&gt;I was thinking in&amp;nbsp; the backgroundproperties like : =if( even(RowNo( ))= 'true', darkgray( ) )&lt;/P&gt;&lt;P&gt;But this doesn't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="vraag.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/47769_vraag.JPG.jpg" style="width: 620px; height: 288px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Oct 2013 09:28:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Backgroundcolor-in-Pivot-Tble/m-p/483012#M180511</guid>
      <dc:creator>kris_vliegen</dc:creator>
      <dc:date>2013-10-17T09:28:59Z</dc:date>
    </item>
    <item>
      <title>Re: Backgroundcolor in Pivot Tble</title>
      <link>https://community.qlik.com/t5/QlikView/Backgroundcolor-in-Pivot-Tble/m-p/483013#M180512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For expression column, you can try like:&lt;/P&gt;&lt;P&gt;=if( even(RowNo( )), darkgray( ) )&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // without 'true'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it's a dimension column, rowno() would not work, alternatively you can check dimension member(or, some other logic) and put color accordingly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Oct 2013 09:36:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Backgroundcolor-in-Pivot-Tble/m-p/483013#M180512</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2013-10-17T09:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: Backgroundcolor in Pivot Tble</title>
      <link>https://community.qlik.com/t5/QlikView/Backgroundcolor-in-Pivot-Tble/m-p/483014#M180513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Right Click - &amp;gt; Properties -&amp;gt; Expression -&amp;gt; Background color -&amp;gt;&lt;/P&gt;&lt;P&gt;Give condition&lt;/P&gt;&lt;P&gt; =if(column(3)&amp;gt;0.001 and column(2)&amp;gt;0.001,if(column(3)&amp;gt;column(2),rgb(0,182,0),rgb(247,247,247)),0)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Oct 2013 09:40:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Backgroundcolor-in-Pivot-Tble/m-p/483014#M180513</guid>
      <dc:creator>vikasmahajan</dc:creator>
      <dc:date>2013-10-17T09:40:55Z</dc:date>
    </item>
    <item>
      <title>Re: Backgroundcolor in Pivot Tble</title>
      <link>https://community.qlik.com/t5/QlikView/Backgroundcolor-in-Pivot-Tble/m-p/483015#M180514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Kris.&lt;/P&gt;&lt;P&gt;You have several options here.&lt;/P&gt;&lt;P&gt;If you want to simply highlight the rows better, go to Style tab, change current style to Light and have stripes every other line.&lt;/P&gt;&lt;P&gt;If you want to highlight good and bad values I often use the expression below in the background colour or the 'Visual Clues' tab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=IF(Field1&amp;nbsp; &amp;gt; 0,&lt;/P&gt;&lt;P&gt;&amp;nbsp; $(vColTrafficGreen),&lt;/P&gt;&lt;P&gt;&amp;nbsp; IF(Field1&amp;nbsp; &amp;lt; 0, &lt;/P&gt;&lt;P&gt;&amp;nbsp; $(vColTrafficRed),&lt;/P&gt;&lt;P&gt;&amp;nbsp; $(vColTrafficGreen)&lt;/P&gt;&lt;P&gt;&amp;nbsp; ))&lt;/P&gt;&lt;P&gt;with the variables being predefined rgb,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Neil &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Oct 2013 09:44:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Backgroundcolor-in-Pivot-Tble/m-p/483015#M180514</guid>
      <dc:creator>ngulliver</dc:creator>
      <dc:date>2013-10-17T09:44:35Z</dc:date>
    </item>
    <item>
      <title>Re: Backgroundcolor in Pivot Tble</title>
      <link>https://community.qlik.com/t5/QlikView/Backgroundcolor-in-Pivot-Tble/m-p/483016#M180515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Neil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to simply highlight the rows better but if I go to the style Light I can't change the number of stripes???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="style.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/47770_style.JPG.jpg" style="width: 620px; height: 551px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also tried with borders above spacing. This is working in my client version, but not if I contact the documnet with chrome.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Oct 2013 09:50:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Backgroundcolor-in-Pivot-Tble/m-p/483016#M180515</guid>
      <dc:creator>kris_vliegen</dc:creator>
      <dc:date>2013-10-17T09:50:40Z</dc:date>
    </item>
    <item>
      <title>Re: Backgroundcolor in Pivot Tble</title>
      <link>https://community.qlik.com/t5/QlikView/Backgroundcolor-in-Pivot-Tble/m-p/483017#M180516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vikas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I do this I get &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="expression.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/47783_expression.JPG.jpg" style="width: 620px; height: 373px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Oct 2013 09:58:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Backgroundcolor-in-Pivot-Tble/m-p/483017#M180516</guid>
      <dc:creator>kris_vliegen</dc:creator>
      <dc:date>2013-10-17T09:58:01Z</dc:date>
    </item>
    <item>
      <title>Re: Backgroundcolor in Pivot Tble</title>
      <link>https://community.qlik.com/t5/QlikView/Backgroundcolor-in-Pivot-Tble/m-p/483018#M180517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This isn't working for my Pivot-table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Oct 2013 11:16:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Backgroundcolor-in-Pivot-Tble/m-p/483018#M180517</guid>
      <dc:creator>kris_vliegen</dc:creator>
      <dc:date>2013-10-17T11:16:27Z</dc:date>
    </item>
  </channel>
</rss>

