<?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 Handling in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Null-Handling/m-p/847729#M1000773</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use isnull together with trim&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(isnull(trim(yourfield....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Jun 2015 13:33:48 GMT</pubDate>
    <dc:creator>giakoum</dc:creator>
    <dc:date>2015-06-08T13:33:48Z</dc:date>
    <item>
      <title>Null Handling</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Handling/m-p/847728#M1000772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a column in excel with some white spaces present in some of the field values.&lt;/P&gt;&lt;P&gt;When I use isnull function, then it considers, white spaces as also not null.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can we use some function which would also treat only white spaces entered in some of the field values as null?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Asma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 13:32:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Handling/m-p/847728#M1000772</guid>
      <dc:creator />
      <dc:date>2015-06-08T13:32:55Z</dc:date>
    </item>
    <item>
      <title>Re: Null Handling</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Handling/m-p/847729#M1000773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use isnull together with trim&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(isnull(trim(yourfield....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 13:33:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Handling/m-p/847729#M1000773</guid>
      <dc:creator>giakoum</dc:creator>
      <dc:date>2015-06-08T13:33:48Z</dc:date>
    </item>
    <item>
      <title>Re: Null Handling</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Handling/m-p/847730#M1000774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;may be,tey tis way..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(count(urfield)&amp;gt;0,urfield,isnull())&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sory,use len instituted of count.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 13:38:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Handling/m-p/847730#M1000774</guid>
      <dc:creator>buzzy996</dc:creator>
      <dc:date>2015-06-08T13:38:28Z</dc:date>
    </item>
    <item>
      <title>Re: Null Handling</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Handling/m-p/847731#M1000775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;or you can try this as well&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(Len(Trim(yourField)) &amp;lt;&amp;gt; 0,....&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and if you are using it in where clause, then like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Where Len(Trim(yourField)) &amp;lt;&amp;gt; 0;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 13:38:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Handling/m-p/847731#M1000775</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-06-08T13:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: Null Handling</title>
      <link>https://community.qlik.com/t5/QlikView/Null-Handling/m-p/847732#M1000776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the length, as the length of a null is also 0. So instead of isnull:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(len(field) &amp;gt; 0, ....)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the field could contain blanks, then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(len(trim(field)) &amp;gt; 0, ....)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 13:45:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-Handling/m-p/847732#M1000776</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-06-08T13:45:22Z</dc:date>
    </item>
  </channel>
</rss>

