<?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: Null Value in Chart in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Null-Value-in-Chart/m-p/478201#M178620</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see the image.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="ChangeNullSymbol.JPG" class="jive-image" src="https://community.qlik.com/legacyfs/online/55332_ChangeNullSymbol.JPG" style="width: 620px; height: 528px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Modify Null Symbol box as your wish like Unknown.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Mar 2014 10:41:13 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-03-19T10:41:13Z</dc:date>
    <item>
      <title>Null Value in Chart</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Value-in-Chart/m-p/478193#M178612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created a chart and on the axis is organisation, e,g A, B and then there is -.&amp;nbsp; In the table i have been able to use the presentation option to set this to Unknown. How can i do this on a chart? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2014 16:16:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Value-in-Chart/m-p/478193#M178612</guid>
      <dc:creator />
      <dc:date>2014-01-07T16:16:26Z</dc:date>
    </item>
    <item>
      <title>Re: Null Value in Chart</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Value-in-Chart/m-p/478194#M178613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; in the dimension tab of the chart you could set the suppress when value is null.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2014 16:18:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Value-in-Chart/m-p/478194#M178613</guid>
      <dc:creator>bbi_mba_76</dc:creator>
      <dc:date>2014-01-07T16:18:09Z</dc:date>
    </item>
    <item>
      <title>Re: Null Value in Chart</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Value-in-Chart/m-p/478195#M178614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for that but that actually removes this from the chart.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What i want is for this to be displayed but to replace the - with the word Unknown.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2014 16:21:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Value-in-Chart/m-p/478195#M178614</guid>
      <dc:creator />
      <dc:date>2014-01-07T16:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: Null Value in Chart</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Value-in-Chart/m-p/478196#M178615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;maybe&lt;/P&gt;&lt;P&gt;if(len(organisation)&amp;gt;0, organisation, 'Unknow')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2014 16:25:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Value-in-Chart/m-p/478196#M178615</guid>
      <dc:creator>bbi_mba_76</dc:creator>
      <dc:date>2014-01-07T16:25:26Z</dc:date>
    </item>
    <item>
      <title>Re: Null Value in Chart</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Value-in-Chart/m-p/478197#M178616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;There's a function called NullAsValue, which lets you substitute null values with a desired text, so you can select and trace them.&lt;/P&gt;&lt;P&gt;In Script you can type something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;NULLASVALUE FieldName1, FieldName2, ... , FieldNameN;&lt;/STRONG&gt; //Here you define which fields will have text instead of missing/null &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Set NullValue = 'Unknown';&lt;/STRONG&gt; // Write whatever text you want for missing/null values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After this, just load all the tables you need,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2014 17:08:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Value-in-Chart/m-p/478197#M178616</guid>
      <dc:creator>jaimeaguilar</dc:creator>
      <dc:date>2014-01-07T17:08:19Z</dc:date>
    </item>
    <item>
      <title>Re: Null Value in Chart</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Value-in-Chart/m-p/478198#M178617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;please try the following&lt;/P&gt;&lt;P&gt;=if(isnull(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;organisation&lt;/SPAN&gt;),'unknown',&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;organisation&lt;/SPAN&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps!!!&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2014 17:45:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Value-in-Chart/m-p/478198#M178617</guid>
      <dc:creator>sureshbaabu</dc:creator>
      <dc:date>2014-01-07T17:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: Null Value in Chart</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Value-in-Chart/m-p/478199#M178618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Attaching qlikview file displaying gap where null is present. In this i am presenting two approaches.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abhishek.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2014 10:12:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Value-in-Chart/m-p/478199#M178618</guid>
      <dc:creator />
      <dc:date>2014-03-19T10:12:51Z</dc:date>
    </item>
    <item>
      <title>Re: Null Value in Chart</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Value-in-Chart/m-p/478200#M178619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please try this:&lt;/P&gt;&lt;P&gt;=if(IsNull(Field),'unknown',Field)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;AS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2014 10:38:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Value-in-Chart/m-p/478200#M178619</guid>
      <dc:creator>amit_saini</dc:creator>
      <dc:date>2014-03-19T10:38:02Z</dc:date>
    </item>
    <item>
      <title>Re: Null Value in Chart</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Value-in-Chart/m-p/478201#M178620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see the image.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="ChangeNullSymbol.JPG" class="jive-image" src="https://community.qlik.com/legacyfs/online/55332_ChangeNullSymbol.JPG" style="width: 620px; height: 528px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Modify Null Symbol box as your wish like Unknown.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2014 10:41:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Value-in-Chart/m-p/478201#M178620</guid>
      <dc:creator />
      <dc:date>2014-03-19T10:41:13Z</dc:date>
    </item>
    <item>
      <title>Re: Null Value in Chart</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Value-in-Chart/m-p/478202#M178621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can achieve this by,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go to Chart Properties-&amp;gt;Presentation -&amp;gt; Missing Symbol and Null Symbol-&amp;gt;write 'Unknown'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2014 10:48:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Value-in-Chart/m-p/478202#M178621</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2014-03-19T10:48:43Z</dc:date>
    </item>
  </channel>
</rss>

