<?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 Multibox in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Replacing-null-values-in-Multibox/m-p/293904#M578752</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 think Null values wont get display in listbox it will be whitespaces try with trim()&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =If(trim(X_COMNT)='','Undefined', X_COMNT)&lt;/P&gt;&lt;P&gt;Then no need to use the field name inside the double quotes when using within most of the functions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Celambarasan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Feb 2012 10:12:29 GMT</pubDate>
    <dc:creator>CELAMBARASAN</dc:creator>
    <dc:date>2012-02-17T10:12:29Z</dc:date>
    <item>
      <title>Replacing null values in Multibox</title>
      <link>https://community.qlik.com/t5/QlikView/Replacing-null-values-in-Multibox/m-p/293900#M578748</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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I have a multibox there I have used some feilds for selection from those for one filed whenever&amp;nbsp; we clicks on that field the first two values are empty(null values) there i want display some text like Undefined for those Null values.. How can we do this.......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was tried the&amp;nbsp; below if condition but its not working..............&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(isnull("X_COMNT")=-1, Undefined, X_COMNT) as X_COMNT,&amp;nbsp; but while reloading the script there I&amp;nbsp; get a error like field not found.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;Anil.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2012 09:52:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replacing-null-values-in-Multibox/m-p/293900#M578748</guid>
      <dc:creator />
      <dc:date>2012-02-17T09:52:58Z</dc:date>
    </item>
    <item>
      <title>Replacing null values in Multibox</title>
      <link>https://community.qlik.com/t5/QlikView/Replacing-null-values-in-Multibox/m-p/293901#M578749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may need to put the undefined in single quotes as it is a literal string value..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(isnull("X_COMNT")=-1, 'Undefined', X_COMNT) as X_COMNT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2012 09:54:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replacing-null-values-in-Multibox/m-p/293901#M578749</guid>
      <dc:creator />
      <dc:date>2012-02-17T09:54:53Z</dc:date>
    </item>
    <item>
      <title>Replacing null values in Multibox</title>
      <link>https://community.qlik.com/t5/QlikView/Replacing-null-values-in-Multibox/m-p/293902#M578750</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;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(Trim([X_COMNT]) = '' OR IsNull(X_COMNT), 'Undefined',X_COMNT) AS X_COMNT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ashok&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2012 10:06:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replacing-null-values-in-Multibox/m-p/293902#M578750</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-02-17T10:06:22Z</dc:date>
    </item>
    <item>
      <title>Replacing null values in Multibox</title>
      <link>https://community.qlik.com/t5/QlikView/Replacing-null-values-in-Multibox/m-p/293903#M578751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes chandashok is essentially correct - I did not notice the Isnull(XXX)=-1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To expand on what he said and take into account the -1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(Trim([X_COMNT]) = '' OR IsNull(X_COMNT) OR X_COMNT = -1, 'Undefined',X_COMNT) AS X_COMNT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First condition checks if it is a blank or string of spaces, second if it is a null, third if it is equal to -1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2012 10:11:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replacing-null-values-in-Multibox/m-p/293903#M578751</guid>
      <dc:creator />
      <dc:date>2012-02-17T10:11:50Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing null values in Multibox</title>
      <link>https://community.qlik.com/t5/QlikView/Replacing-null-values-in-Multibox/m-p/293904#M578752</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 think Null values wont get display in listbox it will be whitespaces try with trim()&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =If(trim(X_COMNT)='','Undefined', X_COMNT)&lt;/P&gt;&lt;P&gt;Then no need to use the field name inside the double quotes when using within most of the functions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Celambarasan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2012 10:12:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replacing-null-values-in-Multibox/m-p/293904#M578752</guid>
      <dc:creator>CELAMBARASAN</dc:creator>
      <dc:date>2012-02-17T10:12:29Z</dc:date>
    </item>
    <item>
      <title>Replacing null values in Multibox</title>
      <link>https://community.qlik.com/t5/QlikView/Replacing-null-values-in-Multibox/m-p/293905#M578753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thnx for all replies now its working fine.........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2012 12:37:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replacing-null-values-in-Multibox/m-p/293905#M578753</guid>
      <dc:creator />
      <dc:date>2012-02-17T12:37:54Z</dc:date>
    </item>
  </channel>
</rss>

