<?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 values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/NULL-values/m-p/597624#M221315</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the only thing is the expression is in the chart object not in the script.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Apr 2014 13:22:56 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-04-03T13:22:56Z</dc:date>
    <item>
      <title>NULL values</title>
      <link>https://community.qlik.com/t5/QlikView/NULL-values/m-p/597616#M221307</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 expressions which are resulting some data to return a - i.e. a null.&amp;nbsp; In addition i have dimensions in the same chart objects that may have a -.&amp;nbsp; I have used the presentation tab on chart properties to set the null symbol to Unknown on the dimension column for example.&amp;nbsp; However it seems that this applies to all columns in the chart not just the one i which to select against.&amp;nbsp; Is this correct behavior?&amp;nbsp; If so how can i get around both of these issues? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2014 12:57:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NULL-values/m-p/597616#M221307</guid>
      <dc:creator />
      <dc:date>2014-04-03T12:57:00Z</dc:date>
    </item>
    <item>
      <title>Re: NULL values</title>
      <link>https://community.qlik.com/t5/QlikView/NULL-values/m-p/597617#M221308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Another way you can use Isnull() function for any specific dimension like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If( Isnull(YourNullfield) = -1,'Unknown',YourNullfield)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2014 13:01:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NULL-values/m-p/597617#M221308</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-04-03T13:01:19Z</dc:date>
    </item>
    <item>
      <title>Re: NULL values</title>
      <link>https://community.qlik.com/t5/QlikView/NULL-values/m-p/597618#M221309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;so lets say I have the following: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DerivedX/RowCounter and I have named my expression as Profit then how would your example apply? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also how would you example apply to a dimension field.&amp;nbsp; Would this be done in the script or within the chart objects propoerty &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2014 13:04:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NULL-values/m-p/597618#M221309</guid>
      <dc:creator />
      <dc:date>2014-04-03T13:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: NULL values</title>
      <link>https://community.qlik.com/t5/QlikView/NULL-values/m-p/597619#M221310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In Expression and in script level both you are able to do with 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;"&gt;If( Isnull(YourNullfield) = -1,'Unknown',YourNullfield)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2014 13:07:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NULL-values/m-p/597619#M221310</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-04-03T13:07:00Z</dc:date>
    </item>
    <item>
      <title>Re: NULL values</title>
      <link>https://community.qlik.com/t5/QlikView/NULL-values/m-p/597620#M221311</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;In Script,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NullAsValue Field1,Field2..;&lt;/P&gt;&lt;P&gt;Set NullValue='@';&amp;nbsp;&amp;nbsp; // Any symbol&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load the script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the symbol(@) in expression instead of Null value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Pradeep &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2014 13:11:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NULL-values/m-p/597620#M221311</guid>
      <dc:creator>PradeepReddy</dc:creator>
      <dc:date>2014-04-03T13:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: NULL values</title>
      <link>https://community.qlik.com/t5/QlikView/NULL-values/m-p/597621#M221312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;okay thats worked on the dimension in the expression area. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How about in the this example: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ave Stay I have values which are showing as -.&amp;nbsp; I want these to be replaced with 0.&amp;nbsp; This is a calculated expression DerivedX/Row&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2014 13:13:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NULL-values/m-p/597621#M221312</guid>
      <dc:creator />
      <dc:date>2014-04-03T13:13:09Z</dc:date>
    </item>
    <item>
      <title>Re: NULL values</title>
      <link>https://community.qlik.com/t5/QlikView/NULL-values/m-p/597622#M221313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok i suggest in the load script you replace or change the symbol '-' to 0 then use it in the Expressions or dimension.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2014 13:21:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NULL-values/m-p/597622#M221313</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-04-03T13:21:06Z</dc:date>
    </item>
    <item>
      <title>Re: NULL values</title>
      <link>https://community.qlik.com/t5/QlikView/NULL-values/m-p/597623#M221314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As I understand the requirement, you need to replace the Null value in Dimension with Zero.&lt;/P&gt;&lt;P&gt;This may helps partially.. it won't show the Nullable dimension.&lt;/P&gt;&lt;P&gt;Select the option "Suppress When Value IS Null" from dimensions tab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2014 13:21:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NULL-values/m-p/597623#M221314</guid>
      <dc:creator>PradeepReddy</dc:creator>
      <dc:date>2014-04-03T13:21:58Z</dc:date>
    </item>
    <item>
      <title>Re: NULL values</title>
      <link>https://community.qlik.com/t5/QlikView/NULL-values/m-p/597624#M221315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the only thing is the expression is in the chart object not in the script.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2014 13:22:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NULL-values/m-p/597624#M221315</guid>
      <dc:creator />
      <dc:date>2014-04-03T13:22:56Z</dc:date>
    </item>
    <item>
      <title>Re: NULL values</title>
      <link>https://community.qlik.com/t5/QlikView/NULL-values/m-p/597625#M221316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Select the option "Suppress When Value IS Null" from dimensions tab from object properties...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chart Properties---&amp;gt; Dimensions --&amp;gt; Choose the dimension -- &amp;gt; "Suppress When Value Is Null" (select this option)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2014 13:26:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NULL-values/m-p/597625#M221316</guid>
      <dc:creator>PradeepReddy</dc:creator>
      <dc:date>2014-04-03T13:26:08Z</dc:date>
    </item>
    <item>
      <title>Re: NULL values</title>
      <link>https://community.qlik.com/t5/QlikView/NULL-values/m-p/597626#M221317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then use (&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Suppress When Value Is Null)&lt;/SPAN&gt; option from chart.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2014 13:39:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NULL-values/m-p/597626#M221317</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-04-03T13:39:07Z</dc:date>
    </item>
    <item>
      <title>Re: NULL values</title>
      <link>https://community.qlik.com/t5/QlikView/NULL-values/m-p/597627#M221318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;there is no supress when value is null.&amp;nbsp; there is only the opition if missing &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2014 13:42:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NULL-values/m-p/597627#M221318</guid>
      <dc:creator />
      <dc:date>2014-04-03T13:42:44Z</dc:date>
    </item>
    <item>
      <title>Re: NULL values</title>
      <link>https://community.qlik.com/t5/QlikView/NULL-values/m-p/597628#M221319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;In which tab you are looking?&lt;/P&gt;&lt;P&gt;Check in the Dimensions tab of Chart properties window..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2014 13:52:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NULL-values/m-p/597628#M221319</guid>
      <dc:creator>PradeepReddy</dc:creator>
      <dc:date>2014-04-03T13:52:30Z</dc:date>
    </item>
  </channel>
</rss>

