<?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 as zero in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130817#M371745</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Temp&lt;/P&gt;&lt;P&gt;LOAD Emp name,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Emp ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Desg;&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;/P&gt;&lt;P&gt;FROM emp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is my example code now where shd use this null function, any idea&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 May 2016 08:59:58 GMT</pubDate>
    <dc:creator>manoranjan_d</dc:creator>
    <dc:date>2016-05-12T08:59:58Z</dc:date>
    <item>
      <title>Null as zero</title>
      <link>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130808#M371736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to convert the Null values as Zero in the Qvd Generator file&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 May 2016 08:36:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130808#M371736</guid>
      <dc:creator>manoranjan_d</dc:creator>
      <dc:date>2016-05-12T08:36:29Z</dc:date>
    </item>
    <item>
      <title>Re: Null as zero</title>
      <link>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130809#M371737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(Len(Trim(FieldName)) = 0, 0, FieldName) as FieldName&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 May 2016 08:37:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130809#M371737</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-05-12T08:37:19Z</dc:date>
    </item>
    <item>
      <title>Re: Null as zero</title>
      <link>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130810#M371738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Alt(FieldName, 0) as FieldName&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 May 2016 08:37:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130810#M371738</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-05-12T08:37:40Z</dc:date>
    </item>
    <item>
      <title>Re: Null as zero</title>
      <link>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130811#M371739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If(IsNull(FieldName) or Len(Trim(FieldName))=0,0,FieldName) as FieldName&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 May 2016 08:41:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130811#M371739</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2016-05-12T08:41:08Z</dc:date>
    </item>
    <item>
      <title>Re: Null as zero</title>
      <link>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130812#M371740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if i go in this way i shd do for all fileds, i wan to do for all fileds in one single shot, any idea?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 May 2016 08:44:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130812#M371740</guid>
      <dc:creator>manoranjan_d</dc:creator>
      <dc:date>2016-05-12T08:44:43Z</dc:date>
    </item>
    <item>
      <title>Re: Null as zero</title>
      <link>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130813#M371741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;You can try nullasvalue function&lt;/P&gt;&lt;P&gt;see below for reference&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlikview.com/thread/125353" title="https://community.qlikview.com/thread/125353"&gt;NullAsValue | Qlik Community&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 May 2016 08:45:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130813#M371741</guid>
      <dc:creator>ankit777</dc:creator>
      <dc:date>2016-05-12T08:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: Null as zero</title>
      <link>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130814#M371742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use NullAsValue function.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 May 2016 08:50:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130814#M371742</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2016-05-12T08:50:23Z</dc:date>
    </item>
    <item>
      <title>Re: Null as zero</title>
      <link>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130815#M371743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look at the sample:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;NullAsValue *;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SET NullValue = 0;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD If(Len(Trim(Val1)) &amp;gt; 0, Val1) as Val1,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; If(Len(Trim(Val2)) &amp;gt; 0, Val2) as Val2,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; If(Len(Trim(Val3)) &amp;gt; 0, Val3) as Val3;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * Inline [&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Val1, Val2, Val3&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3, , 4&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2, 4, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;, 2, 4&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 May 2016 08:54:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130815#M371743</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-05-12T08:54:49Z</dc:date>
    </item>
    <item>
      <title>Re: Null as zero</title>
      <link>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130816#M371744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this one&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Alt(FieldName, 0) as FieldName&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or try in this way &lt;/P&gt;&lt;P&gt;if(fieldname=null, 0)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 May 2016 08:56:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130816#M371744</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-05-12T08:56:10Z</dc:date>
    </item>
    <item>
      <title>Re: Null as zero</title>
      <link>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130817#M371745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Temp&lt;/P&gt;&lt;P&gt;LOAD Emp name,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Emp ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Desg;&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;/P&gt;&lt;P&gt;FROM emp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is my example code now where shd use this null function, any idea&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 May 2016 08:59:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130817#M371745</guid>
      <dc:creator>manoranjan_d</dc:creator>
      <dc:date>2016-05-12T08:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: Null as zero</title>
      <link>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130818#M371746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;NullAsValue *;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;SET NullValue = 0;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Temp&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD Emp name,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Emp ID,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Desg;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL SELECT *&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM emp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 May 2016 09:04:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130818#M371746</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-05-12T09:04:07Z</dc:date>
    </item>
    <item>
      <title>Re: Null as zero</title>
      <link>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130819#M371747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 May 2016 09:39:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130819#M371747</guid>
      <dc:creator>manoranjan_d</dc:creator>
      <dc:date>2016-05-12T09:39:04Z</dc:date>
    </item>
    <item>
      <title>Re: Null as zero</title>
      <link>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130820#M371748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If i want to do Null as 0 for one field below is correct?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;if(amount=null, 0,&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;amount&lt;/SPAN&gt;) as &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;amount&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 May 2016 05:41:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130820#M371748</guid>
      <dc:creator>manoranjan_d</dc:creator>
      <dc:date>2016-05-13T05:41:36Z</dc:date>
    </item>
    <item>
      <title>Re: Null as zero</title>
      <link>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130821#M371749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;it should be like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;=if(isnull(amount),0,amount) as amount&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 May 2016 05:44:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130821#M371749</guid>
      <dc:creator>settu_periasamy</dc:creator>
      <dc:date>2016-05-13T05:44:26Z</dc:date>
    </item>
    <item>
      <title>Re: Null as zero</title>
      <link>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130822#M371750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P class=""&gt;Yes it's correct...!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 May 2016 05:46:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130822#M371750</guid>
      <dc:creator />
      <dc:date>2016-05-13T05:46:20Z</dc:date>
    </item>
    <item>
      <title>Re: Null as zero</title>
      <link>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130823#M371751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes&lt;/P&gt;&lt;P&gt;load qvd file or any other file if the particular field is the have the null values to give in script &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; background-color: #f2f2f2;"&gt;if(amount=null, 0,&lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;amount&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; background-color: #f2f2f2;"&gt;) as &lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;amount&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;or try in this way&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; background-color: #f2f2f2;"&gt;replace(amount,'null','0') as &lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;amount&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 May 2016 06:08:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130823#M371751</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-05-13T06:08:57Z</dc:date>
    </item>
    <item>
      <title>Re: Null as zero</title>
      <link>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130824#M371752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was trying to compare the 2 fields - &lt;/P&gt;&lt;P&gt;Data, where comparison was with value and NULL or NOTHING field. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think many of the above solution may work to achieve my work. But I tried Alt function and it worked for me. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used the complex formula for the KPI field, but the simple form of it - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;Alt (Field1, 0) - Alt(Field2, 0)&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;--&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 78%&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -78%&lt;/P&gt;&lt;P&gt;10%&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 20%&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -10%&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Mar 2017 16:11:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130824#M371752</guid>
      <dc:creator>tejasp47</dc:creator>
      <dc:date>2017-03-13T16:11:35Z</dc:date>
    </item>
    <item>
      <title>Re: Null as zero</title>
      <link>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130825#M371753</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;/P&gt;&lt;P&gt;IF(Len(Trim(amount)) = 0, 0, amount) AS Amount&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Mar 2017 17:08:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-as-zero/m-p/1130825#M371753</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2017-03-13T17:08:09Z</dc:date>
    </item>
  </channel>
</rss>

