<?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: Replacing Null values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Replacing-Null-values/m-p/1234683#M863915</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try it once,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write in script-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;NullAsValue EmployeeID;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SET NullValue='0';&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Dec 2016 07:39:54 GMT</pubDate>
    <dc:creator>tyagishaila</dc:creator>
    <dc:date>2016-12-26T07:39:54Z</dc:date>
    <item>
      <title>Replacing Null values</title>
      <link>https://community.qlik.com/t5/QlikView/Replacing-Null-values/m-p/1234679#M863911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I want to replace the EmployeeID null value as 0. what can i do to get that as i join three table containing EmployeeID&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/147619_Capture.PNG" style="height: auto;" /&gt;&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/Replacing-Null-values/m-p/1234679#M863911</guid>
      <dc:creator>praveenkumar_s</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Null values</title>
      <link>https://community.qlik.com/t5/QlikView/Replacing-Null-values/m-p/1234680#M863912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you want to change the null value in the charts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then use expression : alt(EmloyeeID,0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Sushil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Dec 2016 05:18:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replacing-Null-values/m-p/1234680#M863912</guid>
      <dc:creator>sushil353</dc:creator>
      <dc:date>2016-12-26T05:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Null values</title>
      <link>https://community.qlik.com/t5/QlikView/Replacing-Null-values/m-p/1234681#M863913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can achieve this in two ways either in script or in chart. In chart go to presentation tab change the null value represent from - to 0.&lt;/P&gt;&lt;P&gt;If you want to achieve this in script level check for null value while loading from source change the value there it self.&lt;/P&gt;&lt;P&gt;you can use isnull or coalesce function bro.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Dec 2016 05:22:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replacing-Null-values/m-p/1234681#M863913</guid>
      <dc:creator />
      <dc:date>2016-12-26T05:22:23Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Null values</title>
      <link>https://community.qlik.com/t5/QlikView/Replacing-Null-values/m-p/1234682#M863914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Praveen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use following at Backend i.e, in scrpting (Ctrl + E)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF(ISNULL(EmployeeID),0,EmployeeID) AS EmployeeID &lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Dec 2016 05:58:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replacing-Null-values/m-p/1234682#M863914</guid>
      <dc:creator />
      <dc:date>2016-12-26T05:58:58Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Null values</title>
      <link>https://community.qlik.com/t5/QlikView/Replacing-Null-values/m-p/1234683#M863915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try it once,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write in script-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;NullAsValue EmployeeID;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SET NullValue='0';&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Dec 2016 07:39:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replacing-Null-values/m-p/1234683#M863915</guid>
      <dc:creator>tyagishaila</dc:creator>
      <dc:date>2016-12-26T07:39:54Z</dc:date>
    </item>
  </channel>
</rss>

