<?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 What is the function used to treat null values? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/What-is-the-function-used-to-treat-null-values/m-p/1442402#M810171</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 wanted to replace null values with 0 or 1 ,so how can I achieve it in Qlikview?&lt;/P&gt;&lt;P&gt; For example: ifnull(column1, 0)&lt;/P&gt;&lt;P&gt;explanation: If column1 is null then it will replace null values to 0.&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>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>What is the function used to treat null values?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-function-used-to-treat-null-values/m-p/1442402#M810171</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 wanted to replace null values with 0 or 1 ,so how can I achieve it in Qlikview?&lt;/P&gt;&lt;P&gt; For example: ifnull(column1, 0)&lt;/P&gt;&lt;P&gt;explanation: If column1 is null then it will replace null values to 0.&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/What-is-the-function-used-to-treat-null-values/m-p/1442402#M810171</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: What is the function used to treat null values?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-function-used-to-treat-null-values/m-p/1442403#M810173</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rashika, maybe with IsNull():&lt;/P&gt;&lt;P&gt;If(IsNull(Column1), 0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, to count empty spaces as null this can be used:&lt;/P&gt;&lt;P&gt;If(Len(Trim(Column1))=0, 0)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Oct 2017 11:21:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-the-function-used-to-treat-null-values/m-p/1442403#M810173</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2017-10-12T11:21:46Z</dc:date>
    </item>
    <item>
      <title>Re: What is the function used to treat null values?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-function-used-to-treat-null-values/m-p/1442404#M810174</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this?&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(IsNull(column1), 0)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Oct 2017 11:21:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-the-function-used-to-treat-null-values/m-p/1442404#M810174</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-10-12T11:21:54Z</dc:date>
    </item>
    <item>
      <title>Re: What is the function used to treat null values?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-function-used-to-treat-null-values/m-p/1442405#M810175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have a look at&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-3155"&gt;NULL handling in QlikView&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Oct 2017 11:21:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-the-function-used-to-treat-null-values/m-p/1442405#M810175</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2017-10-12T11:21:57Z</dc:date>
    </item>
    <item>
      <title>Re: What is the function used to treat null values?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-function-used-to-treat-null-values/m-p/1442406#M810176</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Alt() is the function in QV that is much like your ifnull() example. It will return the first valid numericvalue, so it is good for dates and amounts. It does not handle text values. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Alt(column1, 0) &lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Oct 2017 11:36:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-the-function-used-to-treat-null-values/m-p/1442406#M810176</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2017-10-12T11:36:07Z</dc:date>
    </item>
  </channel>
</rss>

