<?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: Remove null data in load in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458058#M484819</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try to promote or&amp;nbsp; demote your dimension, then in dimension select field and check supress null value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think if you take&lt;STRONG&gt; Key in expression &lt;/STRONG&gt;then use supress null value in dimension.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 May 2013 12:12:58 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-05-14T12:12:58Z</dc:date>
    <item>
      <title>Remove null data in load</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458052#M484813</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 need to remove data where records show null for a spesific field. I cannot do this in the sql query because I need it in yet another load&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a code lookin like the one below.&lt;/P&gt;&lt;P&gt;I started out with one load, but have read several postes that susggest that I should do a noconcatenate load as well.&lt;/P&gt;&lt;P&gt;In the Stopp load I add a where clause and have tried 3 different methods.&lt;/P&gt;&lt;P&gt;But still my table box from Stopp will show trucks that have null.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stopp1:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;truck &amp;amp; '-' &amp;amp; min_lic AS KEY3,&lt;/P&gt;&lt;P&gt;,truck as truck3&lt;/P&gt;&lt;P&gt;.min_lic as min_lic3&lt;/P&gt;&lt;P&gt;.load_time as StoppTime3&lt;/P&gt;&lt;P&gt;,IsNull(truck) as NULLID;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL select bla bla.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stopp: &lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;KEY3 AS KEY,&lt;/P&gt;&lt;P&gt;truck3 as truck,&lt;/P&gt;&lt;P&gt;min_lic3 as min_lic,&lt;/P&gt;&lt;P&gt;StoppTime3 as StoppTime,&lt;/P&gt;&lt;P&gt;NULLID;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RESIDENT Stopp1&lt;/P&gt;&lt;P&gt;WHERE &lt;/P&gt;&lt;P&gt;not IsNull(truck3); // TEST 3&lt;/P&gt;&lt;P&gt;//NULLID;= 0;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // TEST 2&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;//len([truck3])&amp;gt;0;&amp;nbsp; // TEST 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table Stopp1:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 May 2013 10:46:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458052#M484813</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-05-14T10:46:10Z</dc:date>
    </item>
    <item>
      <title>Re: Remove null data in load</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458053#M484814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This should be adequate:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;WHERE&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;not IsNull(truck3);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;Are you sure the values are null?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;Try &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;WHERE&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;truck3 &amp;lt;&amp;gt; '';&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 May 2013 10:49:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458053#M484814</guid>
      <dc:creator>giakoum</dc:creator>
      <dc:date>2013-05-14T10:49:44Z</dc:date>
    </item>
    <item>
      <title>Re: Remove null data in load</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458054#M484815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I use the Len(FeildName)&amp;gt;0 method and i usually works for me.&lt;/P&gt;&lt;P&gt;TableBox's can be quite misleading as keys common across fields will dupliacte rows and make it look like there are more nulls tha there are.&lt;/P&gt;&lt;P&gt;Try recreating the fields in the datamodel that you want to check on, or using a chart with expressions testing for only(FieldName)&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 May 2013 10:50:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458054#M484815</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-05-14T10:50:47Z</dc:date>
    </item>
    <item>
      <title>Re: Remove null data in load</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458055#M484816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tried truck &amp;lt;&amp;gt; '' but still I get records that I do not want. The two lines in the midle should not be there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="41053" class="jive-image-thumbnail jive-image" onclick="" alt="NULL_ERROR.jpg" src="https://community.qlik.com/legacyfs/online/41053_NULL_ERROR.jpg" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 May 2013 12:03:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458055#M484816</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-05-14T12:03:51Z</dc:date>
    </item>
    <item>
      <title>Re: Remove null data in load</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458056#M484817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;where nullid is not null&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or select supress null values in your straight table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 May 2013 12:08:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458056#M484817</guid>
      <dc:creator />
      <dc:date>2013-05-14T12:08:29Z</dc:date>
    </item>
    <item>
      <title>Re: Remove null data in load</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458057#M484818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Looking at the image you see my data. What I need is to rule out the two lines in the left table(pivot) that does not get a stop date and time.&lt;/P&gt;&lt;P&gt;The join is done between KEY and I wnat to display the StoppTime value. &lt;/P&gt;&lt;P&gt;In the pic below you see two records with - instead of a valid timestamp, that is because the flow have been stopped for some reason and thus I do not want to import them to my stop table at all, for this view.&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="41054" class="jive-image-thumbnail jive-image" onclick="" alt="NULL_ERROR_2.jpg" src="https://community.qlik.com/legacyfs/online/41054_NULL_ERROR_2.jpg" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 May 2013 12:10:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458057#M484818</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-05-14T12:10:07Z</dc:date>
    </item>
    <item>
      <title>Re: Remove null data in load</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458058#M484819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try to promote or&amp;nbsp; demote your dimension, then in dimension select field and check supress null value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think if you take&lt;STRONG&gt; Key in expression &lt;/STRONG&gt;then use supress null value in dimension.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 May 2013 12:12:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458058#M484819</guid>
      <dc:creator />
      <dc:date>2013-05-14T12:12:58Z</dc:date>
    </item>
    <item>
      <title>Re: Remove null data in load</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458059#M484820</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;&lt;/P&gt;&lt;P&gt;Some Records have Space so use below mentioned Condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EX: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;WHERE Len(Trim(truck3))&amp;gt;0;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 May 2013 12:21:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458059#M484820</guid>
      <dc:creator>kumarnatarajan</dc:creator>
      <dc:date>2013-05-14T12:21:15Z</dc:date>
    </item>
    <item>
      <title>Re: Remove null data in load</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458060#M484821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please give some sample data, and it will be fixed in no time. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just make sure you give the source also, so that we can reload. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 May 2013 12:44:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458060#M484821</guid>
      <dc:creator>giakoum</dc:creator>
      <dc:date>2013-05-14T12:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: Remove null data in load</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458061#M484822</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 not attached code examples before, but tried it no. Hope I have done it correctly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 May 2013 05:55:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458061#M484822</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-05-15T05:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: Remove null data in load</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458062#M484823</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;WHERE&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;truck3 &amp;lt;&amp;gt; Null();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;Regards:&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;Narender&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 May 2013 06:20:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458062#M484823</guid>
      <dc:creator>narender123</dc:creator>
      <dc:date>2013-05-15T06:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: Remove null data in load</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458063#M484824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no, no attachment is there &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/confused.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 May 2013 06:27:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458063#M484824</guid>
      <dc:creator>giakoum</dc:creator>
      <dc:date>2013-05-15T06:27:36Z</dc:date>
    </item>
    <item>
      <title>Re: Remove null data in load</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458064#M484825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I added it at the top level in my original post. Sorry &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 May 2013 06:29:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458064#M484825</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-05-15T06:29:51Z</dc:date>
    </item>
    <item>
      <title>Re: Remove null data in load</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458065#M484826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have tried &lt;/P&gt;&lt;P&gt;truck3 &amp;lt;&amp;gt; Null();&lt;/P&gt;&lt;P&gt;truck3 &amp;lt;&amp;gt; '-';&lt;/P&gt;&lt;P&gt;truck3 &amp;lt;&amp;gt; '';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;None of them works&lt;/P&gt;&lt;P&gt;I still get those empty truck records&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 May 2013 06:33:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458065#M484826</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-05-15T06:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: Remove null data in load</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458066#M484827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;On your bottom table box, select on key Omit rows then null. Then they will not show&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 May 2013 06:38:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458066#M484827</guid>
      <dc:creator />
      <dc:date>2013-05-15T06:38:36Z</dc:date>
    </item>
    <item>
      <title>Re: Remove null data in load</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458067#M484828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That would leave them out of the view yes, but not from the table i self. I would need it to be removed in the load. They should not be included at all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 May 2013 06:44:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458067#M484828</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-05-15T06:44:18Z</dc:date>
    </item>
    <item>
      <title>Re: Remove null data in load</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458068#M484829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey, just a try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;take a text object with expression '=ord(truck2)' hope fully you should get some numeric value by clicking on any of the null values shown in the above screeshot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you get '0' then try giving a where clause as 'WHERE truck2&amp;lt;&amp;gt;chr(0)'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lets see what happens....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 May 2013 06:58:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458068#M484829</guid>
      <dc:creator />
      <dc:date>2013-05-15T06:58:42Z</dc:date>
    </item>
    <item>
      <title>Re: Remove null data in load</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458069#M484830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I get the number 49 regardles of what value I click on for the field truck2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Btw, I then tested WHERE truck2&amp;lt;&amp;gt;chr(49).&lt;/P&gt;&lt;P&gt;No happy ending &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 May 2013 07:12:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458069#M484830</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-05-15T07:12:10Z</dc:date>
    </item>
    <item>
      <title>Re: Remove null data in load</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458070#M484831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any join table in load script? Anyhow, just let a try: Where truck3 &amp;lt;&amp;gt; Null() or truck3 &amp;lt;&amp;gt; '-' or truck3 &amp;lt;&amp;gt; '' or Len(truck3)&amp;gt;0;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sokkorn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 May 2013 07:50:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458070#M484831</guid>
      <dc:creator>Sokkorn</dc:creator>
      <dc:date>2013-05-15T07:50:16Z</dc:date>
    </item>
    <item>
      <title>Re: Remove null data in load</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458071#M484832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sokkorn&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is a join between the two tables on the Key field.&lt;/P&gt;&lt;P&gt;If I rename hte Key to Key2 and thus break the join your where clause seems to work.&lt;/P&gt;&lt;P&gt;But I then have no connection between the two tables and I cannot get the stopdate field into my main table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 May 2013 08:06:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-null-data-in-load/m-p/458071#M484832</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-05-15T08:06:21Z</dc:date>
    </item>
  </channel>
</rss>

