<?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 colours for 'Missing / Null' cells in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185890#M383741</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I &lt;SPAN style="font-size: 13.3333px;"&gt;need&amp;nbsp; &lt;/SPAN&gt;to show zero values too&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Sep 2016 13:30:17 GMT</pubDate>
    <dc:creator>santharubban</dc:creator>
    <dc:date>2016-09-15T13:30:17Z</dc:date>
    <item>
      <title>Background colours for 'Missing / Null' cells</title>
      <link>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185888#M383739</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;In the &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Pivot Table background coloring,the&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; expression defining the color is an attribute expression, and it will only be calculated if the main expression is calculated. Coloring will not be applied if the first column result is missing or null values. Can give a work round for the same.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Santahrubban&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2016 13:25:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185888#M383739</guid>
      <dc:creator>santharubban</dc:creator>
      <dc:date>2016-09-15T13:25:59Z</dc:date>
    </item>
    <item>
      <title>Re: Background colours for 'Missing / Null' cells</title>
      <link>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185889#M383740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to check 'Suppress Zero Values' on the presentation tab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2016 13:28:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185889#M383740</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-09-15T13:28:47Z</dc:date>
    </item>
    <item>
      <title>Re: Background colours for 'Missing / Null' cells</title>
      <link>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185890#M383741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I &lt;SPAN style="font-size: 13.3333px;"&gt;need&amp;nbsp; &lt;/SPAN&gt;to show zero values too&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2016 13:30:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185890#M383741</guid>
      <dc:creator>santharubban</dc:creator>
      <dc:date>2016-09-15T13:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: Background colours for 'Missing / Null' cells</title>
      <link>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185891#M383742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can set it on the attribute of the dimension to background colour those that are null&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(isnull(MyDimension), RGB(255,255,255)) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or if its a null expression - you can do it on the attribute of the expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;=if(isnull(MyExpression), RGB(255,255,255)) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;changing the RGB to your colour&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Hope that helps&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2016 13:41:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185891#M383742</guid>
      <dc:creator>tracysmart</dc:creator>
      <dc:date>2016-09-15T13:41:13Z</dc:date>
    </item>
    <item>
      <title>Re: Background colours for 'Missing / Null' cells</title>
      <link>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185892#M383743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333px;"&gt;Thanks Tracy.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;But it doesn't work, I have already tried.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2016 13:44:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185892#M383743</guid>
      <dc:creator>santharubban</dc:creator>
      <dc:date>2016-09-15T13:44:03Z</dc:date>
    </item>
    <item>
      <title>Re: Background colours for 'Missing / Null' cells</title>
      <link>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185893#M383744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you share a sample application where we can see this issue? Doesn't have to be your actually application, may be just mock up some data to show what you are seeing?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2016 13:45:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185893#M383744</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-09-15T13:45:07Z</dc:date>
    </item>
    <item>
      <title>Re: Background colours for 'Missing / Null' cells</title>
      <link>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185894#M383745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(expression = '0' or expression = 'null' , red())&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This expression would write expression BG color&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2016 13:46:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185894#M383745</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2016-09-15T13:46:22Z</dc:date>
    </item>
    <item>
      <title>Re: Background colours for 'Missing / Null' cells</title>
      <link>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185895#M383746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can set Background Colour in "Visual Cues"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2016 13:49:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185895#M383746</guid>
      <dc:creator>jpenuliar</dc:creator>
      <dc:date>2016-09-15T13:49:17Z</dc:date>
    </item>
    <item>
      <title>Re: Background colours for 'Missing / Null' cells</title>
      <link>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185896#M383747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no luck, it doesn't work &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2016 13:52:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185896#M383747</guid>
      <dc:creator>santharubban</dc:creator>
      <dc:date>2016-09-15T13:52:14Z</dc:date>
    </item>
    <item>
      <title>Re: Background colours for 'Missing / Null' cells</title>
      <link>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185897#M383748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;no luck, it doesn't work&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2016 13:52:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185897#M383748</guid>
      <dc:creator>santharubban</dc:creator>
      <dc:date>2016-09-15T13:52:33Z</dc:date>
    </item>
    <item>
      <title>Re: Background colours for 'Missing / Null' cells</title>
      <link>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185898#M383749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Modify the 4th ("Text") Background Color box.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2016 13:54:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185898#M383749</guid>
      <dc:creator>jpenuliar</dc:creator>
      <dc:date>2016-09-15T13:54:37Z</dc:date>
    </item>
    <item>
      <title>Re: Background colours for 'Missing / Null' cells</title>
      <link>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185899#M383750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;I can't upload application, i have attached screen print of issues&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2016 13:55:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185899#M383750</guid>
      <dc:creator>santharubban</dc:creator>
      <dc:date>2016-09-15T13:55:56Z</dc:date>
    </item>
    <item>
      <title>Re: Background colours for 'Missing / Null' cells</title>
      <link>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185900#M383751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have only zero then try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 28.6924px;"&gt;If(isnull(expression) &amp;lt;= 0 , red())&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2016 14:03:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185900#M383751</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2016-09-15T14:03:57Z</dc:date>
    </item>
    <item>
      <title>Re: Background colours for 'Missing / Null' cells</title>
      <link>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185901#M383752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try if(Your_Expression &amp;gt;0 and len(Your_Expression) &amp;gt;0 , RGB(0,255,0) , RGB(255,0,0))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2016 14:08:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185901#M383752</guid>
      <dc:creator>neelamsaroha157</dc:creator>
      <dc:date>2016-09-15T14:08:15Z</dc:date>
    </item>
    <item>
      <title>Re: Background colours for 'Missing / Null' cells</title>
      <link>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185902#M383753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;see attach pls&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2016 14:09:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185902#M383753</guid>
      <dc:creator>florentina_doga</dc:creator>
      <dc:date>2016-09-15T14:09:54Z</dc:date>
    </item>
    <item>
      <title>Re: Background colours for 'Missing / Null' cells</title>
      <link>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185903#M383754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you looking for something like below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="BackgroundColor.jpg" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/137581_BackgroundColor.jpg" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2016 14:23:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185903#M383754</guid>
      <dc:creator>trdandamudi</dc:creator>
      <dc:date>2016-09-15T14:23:39Z</dc:date>
    </item>
    <item>
      <title>Re: Background colours for 'Missing / Null' cells</title>
      <link>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185904#M383755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="1.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/137597_1.JPG" style="height: 102px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;highlighted yellow line should in white line, but its showing grey clor.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2016 14:48:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Background-colours-for-Missing-Null-cells/m-p/1185904#M383755</guid>
      <dc:creator>santharubban</dc:creator>
      <dc:date>2016-09-15T14:48:58Z</dc:date>
    </item>
  </channel>
</rss>

