<?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 Filter in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Null-Value-Filter/m-p/726138#M1072472</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The load script looks correct. Can you be more specific about the problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Aug 2014 07:31:43 GMT</pubDate>
    <dc:creator>jonathandienst</dc:creator>
    <dc:date>2014-08-07T07:31:43Z</dc:date>
    <item>
      <title>Null Value Filter</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Value-Filter/m-p/726132#M1072465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a table with one field say Hazard Types which doesn't have any null field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I connect this with my data model with many other tables there may few unmatched values (which may not Hazardours goods)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I try to plot the straight table with many other values few Hazard Types values are null which is actually correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a list box of "Hazard Types" in my layout,now user wants to add one extra value "null" in this list box which should filter all the associated null values in the straight table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Jeba&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Aug 2014 14:01:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Value-Filter/m-p/726132#M1072465</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-08-06T14:01:37Z</dc:date>
    </item>
    <item>
      <title>Re: Null Value Filter</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Value-Filter/m-p/726133#M1072466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can achieve by creating something below in script...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hazard_Temp:&lt;/P&gt;&lt;P&gt;Load * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;&amp;nbsp; GOODS, Hazard Types&lt;/P&gt;&lt;P&gt;&amp;nbsp; A, YES&lt;/P&gt;&lt;P&gt;&amp;nbsp; B, YES&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sales:&lt;/P&gt;&lt;P&gt;Load * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;&amp;nbsp; GOODS, Sales&lt;/P&gt;&lt;P&gt;&amp;nbsp; A, 100&lt;/P&gt;&lt;P&gt;&amp;nbsp; B, 120&lt;/P&gt;&lt;P&gt;&amp;nbsp; C, 1000&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Outer Join (Hazard_Temp) Load Distinct GOODS Resident Sales;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;Customer:&lt;/P&gt;&lt;P&gt;Load GOODS, If(IsNull([Hazard Types]),'NO',[Hazard Types]) as [Hazard Types] Resident Hazard_Temp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop Table Hazard_Temp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Aug 2014 14:19:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Value-Filter/m-p/726133#M1072466</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-08-06T14:19:18Z</dc:date>
    </item>
    <item>
      <title>Re: Null Value Filter</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Value-Filter/m-p/726134#M1072467</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 would use NullAsValue to render the null as an empty string. Just add the line&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NullAsValue [Hazard Types];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;before the LOAD statement for the table containing the Hazard Types field. It will then appear in the list box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Aug 2014 14:23:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Value-Filter/m-p/726134#M1072467</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2014-08-06T14:23:12Z</dc:date>
    </item>
    <item>
      <title>Re: Null Value Filter</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Value-Filter/m-p/726135#M1072468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have small sample data then provide that will be easy to understand.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Aug 2014 14:37:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Value-Filter/m-p/726135#M1072468</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-08-06T14:37:09Z</dc:date>
    </item>
    <item>
      <title>Re: Null Value Filter</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Value-Filter/m-p/726136#M1072469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jonathan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried but it seems some where I am missing the logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you pls confirm what mistake I am doing here&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;NullAsValue &lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Customer Segment]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;;&lt;BR /&gt;&lt;BR /&gt;Jeba:&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Customer Segment]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Product Category]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Product Sub-Category]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Product Name]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Product Container]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Product Base Margin]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Ship Date]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Week&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Ship Date]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Weekly&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Diff&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;FROM &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Aug 2014 14:38:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Value-Filter/m-p/726136#M1072469</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-08-06T14:38:32Z</dc:date>
    </item>
    <item>
      <title>Re: Null Value Filter</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Value-Filter/m-p/726137#M1072470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anand,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its a very big data model and fetching the sample data will be a issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you could check my previous message,I want a extra value in "Customer Segment" added to my list box which should filter the null values if I create any tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly note that there will not be any null fields actually in the "Customer Segment",but when I connect many tables in my datamodel,some connections has subset ratio less than 100 %.For this cases my Customer Segment shows null value in the tables.But user want a field "Null" in the "Customer Segment" list box and he want to filter null values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Jeba&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Aug 2014 14:58:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Value-Filter/m-p/726137#M1072470</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-08-06T14:58:18Z</dc:date>
    </item>
    <item>
      <title>Re: Null Value Filter</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Value-Filter/m-p/726138#M1072472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The load script looks correct. Can you be more specific about the problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Aug 2014 07:31:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Value-Filter/m-p/726138#M1072472</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2014-08-07T07:31:43Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Null Value Filter</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Value-Filter/m-p/726139#M1072473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jonathan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attaching one sample data for your kind reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly refer the order id 100 in sheet "Jonathan".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This doesn't have the Customer Segment because its not the matched "Order ID".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now user wants an extra field in the "Customer Segment" list box to filter those unmatched values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Jeba&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Aug 2014 07:44:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Value-Filter/m-p/726139#M1072473</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-08-07T07:44:38Z</dc:date>
    </item>
    <item>
      <title>Re: Null Value Filter</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Value-Filter/m-p/726140#M1072474</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;Your script has an error on tab Main2 (the incomplete statement in lines 3-6). Are you sure that you reloaded successfully and saved after the reload?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Aug 2014 07:58:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Value-Filter/m-p/726140#M1072474</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2014-08-07T07:58:10Z</dc:date>
    </item>
    <item>
      <title>Re: Null Value Filter</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Value-Filter/m-p/726141#M1072475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jonathan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes,it throwed an error,but i just cancelled that and loaded the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Jeba&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Aug 2014 08:02:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Value-Filter/m-p/726141#M1072475</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-08-07T08:02:54Z</dc:date>
    </item>
    <item>
      <title>Re: Null Value Filter</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Value-Filter/m-p/726142#M1072476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jebamalai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;why don't you do another resident load and fill the null values like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(isnull( [Hazard Types]) , 'null', [Hazard Types] ) as [Hazard Types],&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;BR /&gt;Tobias&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Aug 2014 08:03:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Value-Filter/m-p/726142#M1072476</guid>
      <dc:creator>tobias_klett</dc:creator>
      <dc:date>2014-08-07T08:03:35Z</dc:date>
    </item>
    <item>
      <title>Re: Null Value Filter</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Value-Filter/m-p/726143#M1072477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have so many tables to do such resident &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Aug 2014 08:38:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Value-Filter/m-p/726143#M1072477</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-08-07T08:38:53Z</dc:date>
    </item>
  </channel>
</rss>

