<?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: Where clause removing NULL values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Where-clause-removing-NULL-values/m-p/742213#M265029</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post the section of your script with the where clause. That will help to give you the correct answer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 28 Nov 2014 12:09:37 GMT</pubDate>
    <dc:creator>Colin-Albert</dc:creator>
    <dc:date>2014-11-28T12:09:37Z</dc:date>
    <item>
      <title>Where clause removing NULL values</title>
      <link>https://community.qlik.com/t5/QlikView/Where-clause-removing-NULL-values/m-p/742210#M265026</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 am having a problem whereby I am using a Where clause to exclude any products that have their product description marked as EXCLUDED but the problem is that the where clause is also excluding any new products that have not yet been allocated...so they have NULL values as their product description.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone have any suggestions of how to stop that from happening?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Nov 2014 11:56:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-clause-removing-NULL-values/m-p/742210#M265026</guid>
      <dc:creator />
      <dc:date>2014-11-28T11:56:25Z</dc:date>
    </item>
    <item>
      <title>Re: Where clause removing NULL values</title>
      <link>https://community.qlik.com/t5/QlikView/Where-clause-removing-NULL-values/m-p/742211#M265027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;FROM ...somewhere...&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;WHERE [Product description] &amp;lt;&amp;gt; 'EXCLUDED' or len(trim([Product description])) = 0;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;If you're using an sql statement you probably need something like&lt;/P&gt;&lt;P&gt;SELECT *&lt;/P&gt;&lt;P&gt;FROM ...somewhere...&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;WHERE "Product description" &amp;lt;&amp;gt; 'EXCLUDED' or "Product description" IS NULL;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Nov 2014 11:58:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-clause-removing-NULL-values/m-p/742211#M265027</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2014-11-28T11:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: Where clause removing NULL values</title>
      <link>https://community.qlik.com/t5/QlikView/Where-clause-removing-NULL-values/m-p/742212#M265028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; I don't know if you are talking about a where using sql or a load. But I think you could use something like&lt;/P&gt;&lt;P&gt;where (len(description)=0 or match(description,'EXCLUDED')&amp;lt;&amp;gt;1) &lt;/P&gt;&lt;P&gt;If it is an sql then you have to change the clauses using is null &lt;/P&gt;&lt;P&gt;where (description is null or description&amp;lt;&amp;gt;'EXCLUDED' ) &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Nov 2014 12:02:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-clause-removing-NULL-values/m-p/742212#M265028</guid>
      <dc:creator>bbi_mba_76</dc:creator>
      <dc:date>2014-11-28T12:02:24Z</dc:date>
    </item>
    <item>
      <title>Re: Where clause removing NULL values</title>
      <link>https://community.qlik.com/t5/QlikView/Where-clause-removing-NULL-values/m-p/742213#M265029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post the section of your script with the where clause. That will help to give you the correct answer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Nov 2014 12:09:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-clause-removing-NULL-values/m-p/742213#M265029</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2014-11-28T12:09:37Z</dc:date>
    </item>
    <item>
      <title>Re: Where clause removing NULL values</title>
      <link>https://community.qlik.com/t5/QlikView/Where-clause-removing-NULL-values/m-p/742214#M265030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks that worked &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Nov 2014 12:30:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-clause-removing-NULL-values/m-p/742214#M265030</guid>
      <dc:creator />
      <dc:date>2014-11-28T12:30:22Z</dc:date>
    </item>
  </channel>
</rss>

