<?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: How to write if statement with not NULL ? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-write-if-statement-with-not-NULL/m-p/813277#M668216</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if( isNull('Fieldname'),'null conditon','not null conditon');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will work..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Chaitanya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Nov 2014 06:58:04 GMT</pubDate>
    <dc:creator>ychaitanya</dc:creator>
    <dc:date>2014-11-25T06:58:04Z</dc:date>
    <item>
      <title>How to write if statement with not NULL ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-write-if-statement-with-not-NULL/m-p/813276#M668215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a field , from a SQL database that I would like to IF against :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If (fieldname &lt;STRONG&gt;NOT NULL&lt;/STRONG&gt;, do this )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How would&amp;nbsp; I write this like above, but correctly ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2014 06:54:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-write-if-statement-with-not-NULL/m-p/813276#M668215</guid>
      <dc:creator />
      <dc:date>2014-11-25T06:54:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to write if statement with not NULL ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-write-if-statement-with-not-NULL/m-p/813277#M668216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if( isNull('Fieldname'),'null conditon','not null conditon');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will work..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Chaitanya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2014 06:58:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-write-if-statement-with-not-NULL/m-p/813277#M668216</guid>
      <dc:creator>ychaitanya</dc:creator>
      <dc:date>2014-11-25T06:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to write if statement with not NULL ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-write-if-statement-with-not-NULL/m-p/813278#M668217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;try below code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(not isnull(filedname) ,1,0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;BR /&gt;Sushil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2014 06:58:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-write-if-statement-with-not-NULL/m-p/813278#M668217</guid>
      <dc:creator>sushil353</dc:creator>
      <dc:date>2014-11-25T06:58:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to write if statement with not NULL ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-write-if-statement-with-not-NULL/m-p/813279#M668218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try with&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If( &lt;STRONG&gt;IsNull(fieldname)&lt;/STRONG&gt; = 0, do this )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If( &lt;STRONG&gt;Not&lt;/STRONG&gt; IsNull(fieldname), do this )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2014 06:59:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-write-if-statement-with-not-NULL/m-p/813279#M668218</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-11-25T06:59:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to write if statement with not NULL ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-write-if-statement-with-not-NULL/m-p/813280#M668219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;=if (not isnull(Plant_ShortName),Plant_ShortName &amp;amp; ' - ' &amp;amp; Plant_FullName)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;AS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2014 06:59:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-write-if-statement-with-not-NULL/m-p/813280#M668219</guid>
      <dc:creator>amit_saini</dc:creator>
      <dc:date>2014-11-25T06:59:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to write if statement with not NULL ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-write-if-statement-with-not-NULL/m-p/813281#M668220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;If (IsNull(fieldname&amp;gt; &amp;lt;&amp;gt; -1&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;, 'do this' )&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2014 06:59:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-write-if-statement-with-not-NULL/m-p/813281#M668220</guid>
      <dc:creator>anbu1984</dc:creator>
      <dc:date>2014-11-25T06:59:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to write if statement with not NULL ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-write-if-statement-with-not-NULL/m-p/813282#M668221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks , that worked perfectly !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2014 07:07:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-write-if-statement-with-not-NULL/m-p/813282#M668221</guid>
      <dc:creator />
      <dc:date>2014-11-25T07:07:57Z</dc:date>
    </item>
  </channel>
</rss>

