<?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: is not null? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/is-not-null/m-p/463528#M694479</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's in the select clause:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE WHEN ((Date1)&amp;lt;(Date2) OR (Date2) IS NULL) AND ((Date1)&amp;lt;(Date3) OR (Date3) IS NULL) AND (Date1) IS NOT NULL THEN 'Name' END,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 May 2013 15:55:57 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-05-15T15:55:57Z</dc:date>
    <item>
      <title>is not null?</title>
      <link>https://community.qlik.com/t5/QlikView/is-not-null/m-p/463526#M694477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am converting a report from BO into QV and in the SQL script there is "Field IS NOT NULL" in the if statement, is there a similar command in QlikView? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 May 2013 15:48:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/is-not-null/m-p/463526#M694477</guid>
      <dc:creator />
      <dc:date>2013-05-15T15:48:52Z</dc:date>
    </item>
    <item>
      <title>Re: is not null?</title>
      <link>https://community.qlik.com/t5/QlikView/is-not-null/m-p/463527#M694478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I assume this is as part of a where clause. In that case you can use WHERE len(trim(Field))&amp;gt;0.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 May 2013 15:50:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/is-not-null/m-p/463527#M694478</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-05-15T15:50:55Z</dc:date>
    </item>
    <item>
      <title>Re: is not null?</title>
      <link>https://community.qlik.com/t5/QlikView/is-not-null/m-p/463528#M694479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's in the select clause:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE WHEN ((Date1)&amp;lt;(Date2) OR (Date2) IS NULL) AND ((Date1)&amp;lt;(Date3) OR (Date3) IS NULL) AND (Date1) IS NOT NULL THEN 'Name' END,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 May 2013 15:55:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/is-not-null/m-p/463528#M694479</guid>
      <dc:creator />
      <dc:date>2013-05-15T15:55:57Z</dc:date>
    </item>
    <item>
      <title>Re: is not null?</title>
      <link>https://community.qlik.com/t5/QlikView/is-not-null/m-p/463529#M694480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you are stuck with If(Isnull(field)) or the len(trim(field)) &amp;gt; 0 that gysbert mentioned.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in general the len() one is better, since it hits more sources (excel is a good example) however, if you wanted the empty string (which is not really null) then do the isnull test.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 May 2013 16:00:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/is-not-null/m-p/463529#M694480</guid>
      <dc:creator>calvindk</dc:creator>
      <dc:date>2013-05-15T16:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: is not null?</title>
      <link>https://community.qlik.com/t5/QlikView/is-not-null/m-p/463530#M694481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the replies. So using len:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If( ( Date1 &amp;lt; Date2 OR isnull(Date2) ) AND ( Date1 &amp;lt; Date3 OR isnull(Date3) ) AND ( len(trim(Date1)) &amp;gt; 0 ) , 'Name' )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 May 2013 16:04:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/is-not-null/m-p/463530#M694481</guid>
      <dc:creator />
      <dc:date>2013-05-15T16:04:37Z</dc:date>
    </item>
    <item>
      <title>Re: is not null?</title>
      <link>https://community.qlik.com/t5/QlikView/is-not-null/m-p/463531#M694482</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;STRONG&gt;and this way:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;YourTable:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;load&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Name;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //...&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; SQL select &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CASE WHEN ((Date1)&amp;lt;(Date2) OR (Date2) IS NULL) AND ((Date1)&amp;lt;(Date3) OR (Date3) IS NULL) AND (Date1) IS NOT NULL THEN 'Name' END;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //from aTable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sacho&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 May 2013 16:33:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/is-not-null/m-p/463531#M694482</guid>
      <dc:creator />
      <dc:date>2013-05-15T16:33:24Z</dc:date>
    </item>
    <item>
      <title>Re: is not null?</title>
      <link>https://community.qlik.com/t5/QlikView/is-not-null/m-p/463532#M694483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, joschkoff2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, we create qvds from the database tables untouched and perform all the operations within the load script for the dashboard when bringing in the qvds.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 May 2013 18:01:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/is-not-null/m-p/463532#M694483</guid>
      <dc:creator />
      <dc:date>2013-05-15T18:01:36Z</dc:date>
    </item>
    <item>
      <title>Re: is not null?</title>
      <link>https://community.qlik.com/t5/QlikView/is-not-null/m-p/463533#M694484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;WHERE NOT IsNull(field)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2014 15:54:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/is-not-null/m-p/463533#M694484</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-24T15:54:03Z</dc:date>
    </item>
  </channel>
</rss>

