<?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 Change Backround color for each row in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Change-Backround-color-for-each-row/m-p/198413#M57719</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, it's sound like you need to use RGB function. And make just one if function.&lt;/P&gt;&lt;P&gt;Try to use the code in text color&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; if(Status='0',RGB(300,0,0),if(Status='1',RGB(0,400,0),black()))&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;I try on my QV file and it's work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: I use this code in pivot table.&lt;/P&gt;&lt;P&gt;Hope this will help &lt;IMG alt="Smile" src="http://community.qlik.com/emoticons/emotion-1.gif" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Jun 2010 08:25:12 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-06-23T08:25:12Z</dc:date>
    <item>
      <title>Change Backround color for each row</title>
      <link>https://community.qlik.com/t5/QlikView/Change-Backround-color-for-each-row/m-p/198411#M57717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am creating a flat table which has column name 'Status' it has values like 0, 1 and 2.&lt;/P&gt;&lt;P&gt;I want that which row has value 0 should be red, 1 should be green ,and 2 should black.&lt;/P&gt;&lt;P&gt;I am writing like this in Background color expression-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(Status='0',Red()) OR if(Status='1',Green()) OR if(Status='2',Black())&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this is not working it make strange color rather than showing red row which has 0 value, and green row which has value=1 ,and black for value=2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new here, pls. help me asap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jun 2010 07:56:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-Backround-color-for-each-row/m-p/198411#M57717</guid>
      <dc:creator />
      <dc:date>2010-06-23T07:56:06Z</dc:date>
    </item>
    <item>
      <title>Change Backround color for each row</title>
      <link>https://community.qlik.com/t5/QlikView/Change-Backround-color-for-each-row/m-p/198412#M57718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think your if conditions ar not correct, they should be&lt;/P&gt;&lt;P&gt;=if(Status=0, Red(),if(Status=1, Green(), Black())&lt;/P&gt;&lt;P&gt;the if statement syntax is:&lt;/P&gt;&lt;P&gt;if(Condition,then,else)&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jun 2010 08:09:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-Backround-color-for-each-row/m-p/198412#M57718</guid>
      <dc:creator />
      <dc:date>2010-06-23T08:09:36Z</dc:date>
    </item>
    <item>
      <title>Change Backround color for each row</title>
      <link>https://community.qlik.com/t5/QlikView/Change-Backround-color-for-each-row/m-p/198413#M57719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, it's sound like you need to use RGB function. And make just one if function.&lt;/P&gt;&lt;P&gt;Try to use the code in text color&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; if(Status='0',RGB(300,0,0),if(Status='1',RGB(0,400,0),black()))&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;I try on my QV file and it's work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: I use this code in pivot table.&lt;/P&gt;&lt;P&gt;Hope this will help &lt;IMG alt="Smile" src="http://community.qlik.com/emoticons/emotion-1.gif" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jun 2010 08:25:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-Backround-color-for-each-row/m-p/198413#M57719</guid>
      <dc:creator />
      <dc:date>2010-06-23T08:25:12Z</dc:date>
    </item>
    <item>
      <title>Change Backround color for each row</title>
      <link>https://community.qlik.com/t5/QlikView/Change-Backround-color-for-each-row/m-p/198414#M57720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks! Mubse and Tatarjar, Your Answers helped me to resolve this! Really great help! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Yogesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jun 2010 09:00:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-Backround-color-for-each-row/m-p/198414#M57720</guid>
      <dc:creator />
      <dc:date>2010-06-23T09:00:17Z</dc:date>
    </item>
  </channel>
</rss>

