<?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 ISNULL function in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/ISNULL-function/m-p/142716#M22118</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;let's try :&lt;/P&gt;&lt;P&gt;&lt;B&gt;IF(IF(ISNULL(FOB_BILLING),0,&lt;/B&gt;&lt;B&gt;FOB_BILLING) &amp;gt; 0,&lt;/B&gt; &lt;B&gt;FREIGHT_EST,0) as RESULT,&lt;/B&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Apr 2009 23:08:51 GMT</pubDate>
    <dc:creator>yblake</dc:creator>
    <dc:date>2009-04-28T23:08:51Z</dc:date>
    <item>
      <title>ISNULL function</title>
      <link>https://community.qlik.com/t5/QlikView/ISNULL-function/m-p/142715#M22117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Fellow users,&lt;/P&gt;&lt;P&gt;I have a problem with the following statement, cann someone help me, here it comes.&lt;/P&gt;&lt;P&gt;I have three fields FOB_BILLING , FREIGHT_EST, RESULT. I would like to write the following formula:&lt;/P&gt;&lt;P&gt;If (FOB_BILLING &amp;lt;=0 then Field RESULT should be 0.&lt;/P&gt;&lt;P&gt;iF(FOB_BILLING &amp;gt;0 then Field RESULT Should have the value of FREIGHT_EST .&lt;/P&gt;&lt;P&gt;I tried the following statement:&lt;/P&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;IF(ISNULL(FOB_BILLING)= '0', FREIGHT_EST,'0') as RESULT,&lt;/P&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;Greetings from Holland,&lt;/P&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;Aissam&lt;/P&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2009 23:04:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ISNULL-function/m-p/142715#M22117</guid>
      <dc:creator />
      <dc:date>2009-04-28T23:04:21Z</dc:date>
    </item>
    <item>
      <title>ISNULL function</title>
      <link>https://community.qlik.com/t5/QlikView/ISNULL-function/m-p/142716#M22118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;let's try :&lt;/P&gt;&lt;P&gt;&lt;B&gt;IF(IF(ISNULL(FOB_BILLING),0,&lt;/B&gt;&lt;B&gt;FOB_BILLING) &amp;gt; 0,&lt;/B&gt; &lt;B&gt;FREIGHT_EST,0) as RESULT,&lt;/B&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2009 23:08:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ISNULL-function/m-p/142716#M22118</guid>
      <dc:creator>yblake</dc:creator>
      <dc:date>2009-04-28T23:08:51Z</dc:date>
    </item>
    <item>
      <title>ISNULL function</title>
      <link>https://community.qlik.com/t5/QlikView/ISNULL-function/m-p/142717#M22119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Yves,&lt;/P&gt;&lt;P&gt;It works,&lt;/P&gt;&lt;P&gt;Merci beaucoup,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Aissam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2009 23:28:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ISNULL-function/m-p/142717#M22119</guid>
      <dc:creator />
      <dc:date>2009-04-28T23:28:09Z</dc:date>
    </item>
    <item>
      <title>ISNULL function</title>
      <link>https://community.qlik.com/t5/QlikView/ISNULL-function/m-p/142718#M22120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't understand why you should need the ISNULL() function for this problem, I would fix it like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;IF(FOB_BILLING&amp;gt;0,FREIGHT_EST,'0') AS RESULT&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Otherwise like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;IF(ISNULL(FOB_BILLING),'0',IF(FOB_BILLING&amp;lt;=0,'0',FREIGHT_EST)) AS RESULT&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2009 23:28:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ISNULL-function/m-p/142718#M22120</guid>
      <dc:creator />
      <dc:date>2009-04-28T23:28:53Z</dc:date>
    </item>
    <item>
      <title>ISNULL function</title>
      <link>https://community.qlik.com/t5/QlikView/ISNULL-function/m-p/142719#M22121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This works also.&lt;/P&gt;&lt;P&gt;Bedankt,&lt;/P&gt;&lt;P&gt;Aissam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 14:05:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ISNULL-function/m-p/142719#M22121</guid>
      <dc:creator />
      <dc:date>2009-04-29T14:05:00Z</dc:date>
    </item>
  </channel>
</rss>

