<?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: IsNull() function in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844192#M656266</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use it as text to fill some space. Put '//' in front of it and it can be used as a comment.&lt;/P&gt;&lt;P&gt;Isnull takes only one argument. So it you try to use it with two arguments your script will throw an error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have a question then creating a new discussion for it is a better idea than digging up a discussion that's been dead and buried for three years.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Sep 2018 13:15:05 GMT</pubDate>
    <dc:creator>Gysbert_Wassenaar</dc:creator>
    <dc:date>2018-09-18T13:15:05Z</dc:date>
    <item>
      <title>IsNull() function</title>
      <link>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844178#M656246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, can anybody tell me in simple words what is IsNull() and why and where is it used?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 05:34:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844178#M656246</guid>
      <dc:creator />
      <dc:date>2015-06-08T05:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: IsNull() function</title>
      <link>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844179#M656247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FInd the needful info on this thread.&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/message/489669#489669"&gt;https://community.qlik.com/message/489669#489669&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 05:38:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844179#M656247</guid>
      <dc:creator>qlikmsg4u</dc:creator>
      <dc:date>2015-06-08T05:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: IsNull() function</title>
      <link>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844180#M656248</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;In qlikview, we can handle null values in source in 2 ways.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. IsNull&lt;/P&gt;&lt;P&gt;2. Alt function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * Inline [&lt;/P&gt;&lt;P&gt;Product, Sales, Rate&lt;/P&gt;&lt;P&gt;A,100,1.2&lt;/P&gt;&lt;P&gt;B,200,1.3&lt;/P&gt;&lt;P&gt;C,300, ];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reload the above script and create straight table with Product as dimension and expressions as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sum(Sales*Rate)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will observe only 2 records as 1 record has null value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Solution1:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In chart properties, expressions tab, modify expression as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sum(Sales * Alt(Rate,1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Solution2:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In script window, write the script as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(ISNULL(Rate),1,Rate) as Rate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We can handle null values in the above fashion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if there is anything required.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 05:39:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844180#M656248</guid>
      <dc:creator>satishkurra</dc:creator>
      <dc:date>2015-06-08T05:39:44Z</dc:date>
    </item>
    <item>
      <title>Re: IsNull() function</title>
      <link>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844181#M656249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can find that information in the help file. Open Qlikview and press the F1 key. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="syntax"&gt;&lt;A name="kanchor891"&gt;&lt;/A&gt;&lt;A name="IsNull"&gt;&lt;/A&gt;&lt;SPAN class="Bold"&gt;&lt;STRONG&gt;IsNull(&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN class="Italic"&gt;expr&lt;/SPAN&gt;&lt;SPAN class="Bold"&gt; )&lt;/SPAN&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Returns -1 (true) if expr returns NULL, otherwise 0 (false). &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 05:40:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844181#M656249</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-06-08T05:40:08Z</dc:date>
    </item>
    <item>
      <title>Re: IsNull() function</title>
      <link>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844182#M656250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In simple words, as you ask:&lt;/P&gt;&lt;P&gt;IsNull(&lt;EM&gt;Field&lt;/EM&gt;) returns true (-1) if the value of the &lt;EM&gt;Field&lt;/EM&gt; is null, and returns false (0) if the value of the &lt;EM&gt;Field&lt;/EM&gt; is not null.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 05:45:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844182#M656250</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-06-08T05:45:56Z</dc:date>
    </item>
    <item>
      <title>Re: IsNull() function</title>
      <link>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844183#M656251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is was not helpful at all..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 06:18:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844183#M656251</guid>
      <dc:creator />
      <dc:date>2015-06-08T06:18:43Z</dc:date>
    </item>
    <item>
      <title>Re: IsNull() function</title>
      <link>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844184#M656252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;not helpful...I cudnt understand the basic meaning&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 06:19:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844184#M656252</guid>
      <dc:creator />
      <dc:date>2015-06-08T06:19:18Z</dc:date>
    </item>
    <item>
      <title>Re: IsNull() function</title>
      <link>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844185#M656253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanku ! very helpful indeed !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 06:19:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844185#M656253</guid>
      <dc:creator />
      <dc:date>2015-06-08T06:19:38Z</dc:date>
    </item>
    <item>
      <title>Re: IsNull() function</title>
      <link>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844186#M656255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you understand the concept of "NULL"?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NULL is a special value used in database products to signify that a cell or field contains &lt;EM&gt;nothing&lt;/EM&gt;, not even the empty string or 0. It can also mean &lt;EM&gt;uninitialised&lt;/EM&gt;, meaning that this cell has never been used before. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;true and false are names for values that are actually numerical. true is equal to -1&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;, and false is equal to 0. In QlikView you can use them interchangeably: it doesn't matter which one you use.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;IsNull() is used - amongst others - to check whether a field or a table cell actually contains a value that should get your attention. You may prefer to act on IsNull() = true to fill some field with a default value (e.g. 'UNKNOWN') when it contains nothing, or to throw away a row when the most important field is missing.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;It would help if you could tell us what exactly isn't clear to you instead of the Good/Not Good qualification.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Peter&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 07:54:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844186#M656255</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2015-06-08T07:54:53Z</dc:date>
    </item>
    <item>
      <title>Re: IsNull() function</title>
      <link>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844187#M656259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;really sorry didn't meant that way..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;n thanku for the explanation &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 09:43:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844187#M656259</guid>
      <dc:creator />
      <dc:date>2015-06-08T09:43:14Z</dc:date>
    </item>
    <item>
      <title>Re: IsNull() function</title>
      <link>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844188#M656262</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;Please read this &lt;A _jive_internal="true" href="https://community.qlik.com/docs/DOC-3155"&gt;blog post by HIC&lt;/A&gt; for better understanding of NULL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 11:18:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844188#M656262</guid>
      <dc:creator>Gabriel</dc:creator>
      <dc:date>2015-06-08T11:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: IsNull() function</title>
      <link>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844189#M656263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;IsNull(&lt;/SPAN&gt;&lt;SPAN class="Italic" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;expr&lt;/SPAN&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;) r&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;eturns -1 (true) if expr returns NULL, otherwise 0 (false).&lt;/SPAN&gt;&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;What part(s) of this sentence don't you understand?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 11:55:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844189#M656263</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-06-08T11:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: IsNull() function</title>
      <link>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844190#M656264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please remember to mark correct and helpful answers, to show your gratitude for the effort that has been put in to answering your questions. It will also indicate if you are happy with the replies or if you require more input.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 12:00:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844190#M656264</guid>
      <dc:creator>ToniKautto</dc:creator>
      <dc:date>2015-06-08T12:00:08Z</dc:date>
    </item>
    <item>
      <title>Re: IsNull() function</title>
      <link>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844191#M656265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gysbert &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can we use following in Qlik?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,ISNULL(I.instrumentcusip,ISNULL(I.instrumentsedol,ISNULL(I.instrumentisin,I.instrumentticker))) AS [SECURITY ID]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2018 12:52:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844191#M656265</guid>
      <dc:creator>ashishpalkar</dc:creator>
      <dc:date>2018-09-18T12:52:49Z</dc:date>
    </item>
    <item>
      <title>Re: IsNull() function</title>
      <link>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844192#M656266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use it as text to fill some space. Put '//' in front of it and it can be used as a comment.&lt;/P&gt;&lt;P&gt;Isnull takes only one argument. So it you try to use it with two arguments your script will throw an error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have a question then creating a new discussion for it is a better idea than digging up a discussion that's been dead and buried for three years.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2018 13:15:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/844192#M656266</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2018-09-18T13:15:05Z</dc:date>
    </item>
    <item>
      <title>Re: IsNull() function</title>
      <link>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/1511943#M656267</link>
      <description>&lt;P&gt;qlikview help is very useful.&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/sense/November2018/Subsystems/Hub/Content/Sense_Hub/Scripting/NULLFunctions/IsNull.htm" target="_blank"&gt;https://help.qlik.com/en-US/sense/November2018/Subsystems/Hub/Content/Sense_Hub/Scripting/NULLFunctions/IsNull.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Nov 2018 04:11:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IsNull-function/m-p/1511943#M656267</guid>
      <dc:creator>jafari_ervin</dc:creator>
      <dc:date>2018-11-26T04:11:03Z</dc:date>
    </item>
  </channel>
</rss>

