<?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: explain difference between Null and IsNull ? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/explain-difference-between-Null-and-IsNull/m-p/1185108#M882869</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P class="syntax"&gt;&lt;A name="kanchor887"&gt;&lt;/A&gt;&lt;A name="Null"&gt;&lt;/A&gt;&lt;SPAN class="Bold"&gt;Null( )&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Returns a real NULL value means it will return a null data itself you consider it as not data &lt;/STRONG&gt;&lt;/P&gt;&lt;P class="syntax"&gt;&lt;A name="kanchor888"&gt;&lt;/A&gt;&lt;A name="IsNull"&gt;&lt;/A&gt;&lt;SPAN class="Bold"&gt;IsNull(&lt;/SPAN&gt;&lt;SPAN class="Italic"&gt;expr&lt;/SPAN&gt;&lt;SPAN class="Bold"&gt; )&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;Returns -1 (true) if expr returns NULL, otherwise 0 (false). &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I.e it will return a value 1 if the value is null or if it has data then it returns 0&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Sep 2016 08:35:43 GMT</pubDate>
    <dc:creator>avinashelite</dc:creator>
    <dc:date>2016-09-29T08:35:43Z</dc:date>
    <item>
      <title>explain difference between Null and IsNull ?</title>
      <link>https://community.qlik.com/t5/QlikView/explain-difference-between-Null-and-IsNull/m-p/1185104#M882865</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;tell me with simple example for null and isnull functions.how to handle the null valules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/explain-difference-between-Null-and-IsNull/m-p/1185104#M882865</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: explain difference between Null and IsNull ?</title>
      <link>https://community.qlik.com/t5/QlikView/explain-difference-between-Null-and-IsNull/m-p/1185105#M882866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you do not have a value in a field it is called a 'Null'&lt;/P&gt;&lt;P&gt;Example :&lt;/P&gt;&lt;P&gt;Country = &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You use IsNull to check if a field is null.&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;IsNull(Country)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Sep 2016 15:48:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/explain-difference-between-Null-and-IsNull/m-p/1185105#M882866</guid>
      <dc:creator>trdandamudi</dc:creator>
      <dc:date>2016-09-28T15:48:04Z</dc:date>
    </item>
    <item>
      <title>Re: explain difference between Null and IsNull ?</title>
      <link>https://community.qlik.com/t5/QlikView/explain-difference-between-Null-and-IsNull/m-p/1185106#M882867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The function Null() returns a Null value, for example:&lt;/P&gt;&lt;P&gt;State = Null(); (function)&lt;/P&gt;&lt;P&gt;will evaluate to State = Null (value).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The function isNull() returns a value depending on whether the value evaluated is indeed a null value, for example:&lt;/P&gt;&lt;P&gt;State = Null (value)&lt;/P&gt;&lt;P&gt;isNull(State) is true (or 1) because State is Null.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this isn't too confusing...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know,&lt;/P&gt;&lt;P&gt;Arthur&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Sep 2016 15:57:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/explain-difference-between-Null-and-IsNull/m-p/1185106#M882867</guid>
      <dc:creator />
      <dc:date>2016-09-28T15:57:26Z</dc:date>
    </item>
    <item>
      <title>Re: explain difference between Null and IsNull ?</title>
      <link>https://community.qlik.com/t5/QlikView/explain-difference-between-Null-and-IsNull/m-p/1185107#M882868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Take a look here: &lt;A href="https://community.qlik.com/docs/DOC-3155"&gt;NULL handling in QlikView&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2016 07:08:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/explain-difference-between-Null-and-IsNull/m-p/1185107#M882868</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2016-09-29T07:08:36Z</dc:date>
    </item>
    <item>
      <title>Re: explain difference between Null and IsNull ?</title>
      <link>https://community.qlik.com/t5/QlikView/explain-difference-between-Null-and-IsNull/m-p/1185108#M882869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P class="syntax"&gt;&lt;A name="kanchor887"&gt;&lt;/A&gt;&lt;A name="Null"&gt;&lt;/A&gt;&lt;SPAN class="Bold"&gt;Null( )&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Returns a real NULL value means it will return a null data itself you consider it as not data &lt;/STRONG&gt;&lt;/P&gt;&lt;P class="syntax"&gt;&lt;A name="kanchor888"&gt;&lt;/A&gt;&lt;A name="IsNull"&gt;&lt;/A&gt;&lt;SPAN class="Bold"&gt;IsNull(&lt;/SPAN&gt;&lt;SPAN class="Italic"&gt;expr&lt;/SPAN&gt;&lt;SPAN class="Bold"&gt; )&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;Returns -1 (true) if expr returns NULL, otherwise 0 (false). &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I.e it will return a value 1 if the value is null or if it has data then it returns 0&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2016 08:35:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/explain-difference-between-Null-and-IsNull/m-p/1185108#M882869</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2016-09-29T08:35:43Z</dc:date>
    </item>
  </channel>
</rss>

