<?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 values in List Box in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Null-values-in-List-Box/m-p/644488#M1093296</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Agreed Henric,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its not null values, It is empty strings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me try out with this expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Balraj Ahlawat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 23 May 2014 06:52:21 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-05-23T06:52:21Z</dc:date>
    <item>
      <title>Null values in List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Null-values-in-List-Box/m-p/644484#M1093292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am having some null values in my list box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could some body help to remove those null values from list box?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Balraj Ahlawat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2014 06:34:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-values-in-List-Box/m-p/644484#M1093292</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-23T06:34:29Z</dc:date>
    </item>
    <item>
      <title>Re: Null values in List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Null-values-in-List-Box/m-p/644485#M1093293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;NULL values are never shown in list boxes. Instead, what you probably have is empty strings, or strings with blanks. I would convert these to NULLs in the script by using&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Len(Trim(MyField))&amp;gt;0,MyField) as MyField&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then they will not show up in the list box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2014 06:38:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-values-in-List-Box/m-p/644485#M1093293</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2014-05-23T06:38:16Z</dc:date>
    </item>
    <item>
      <title>Re: Null values in List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Null-values-in-List-Box/m-p/644486#M1093294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try expression, like: If(len(Trim(YourField))&amp;gt;0, YourField)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2014 06:39:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-values-in-List-Box/m-p/644486#M1093294</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2014-05-23T06:39:01Z</dc:date>
    </item>
    <item>
      <title>Re: Null values in List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Null-values-in-List-Box/m-p/644487#M1093295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;if( fieldname&amp;lt;&amp;gt;' ',Fieldname)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(len(fieldname)&amp;gt;0,Fieldname) /// as henric suggeted&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(fieldname=null(),fieldName)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or if there is some null characters like .,-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(fieldname&amp;lt;&amp;gt;'.',fieldname)&lt;/P&gt;&lt;P&gt;if(fieldname&amp;lt;&amp;gt;'-',fieldname)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope one of them work for you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2014 06:42:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-values-in-List-Box/m-p/644487#M1093295</guid>
      <dc:creator>SunilChauhan</dc:creator>
      <dc:date>2014-05-23T06:42:33Z</dc:date>
    </item>
    <item>
      <title>Re: Null values in List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Null-values-in-List-Box/m-p/644488#M1093296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Agreed Henric,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its not null values, It is empty strings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me try out with this expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Balraj Ahlawat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2014 06:52:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-values-in-List-Box/m-p/644488#M1093296</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-23T06:52:21Z</dc:date>
    </item>
    <item>
      <title>Re: Null values in List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Null-values-in-List-Box/m-p/644489#M1093297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its done.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Balraj Ahlawat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2014 06:57:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-values-in-List-Box/m-p/644489#M1093297</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-23T06:57:54Z</dc:date>
    </item>
  </channel>
</rss>

