<?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: Auto hide null values in list box in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Auto-hide-null-values-in-list-box/m-p/1108768#M628621</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, if you put that expression on the Sort tab you only change the sorting. That's why the tab has the name Sort. Go to the General tab and replace the field Expense Type with &amp;lt;expression&amp;gt; and then enter the expression I posted above.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Aug 2016 10:21:01 GMT</pubDate>
    <dc:creator>Gysbert_Wassenaar</dc:creator>
    <dc:date>2016-08-15T10:21:01Z</dc:date>
    <item>
      <title>Auto hide null values in list box</title>
      <link>https://community.qlik.com/t5/QlikView/Auto-hide-null-values-in-list-box/m-p/1108764#M628617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a problem for the list box below,&lt;/P&gt;&lt;P&gt;In the list box have null value, how to auto hide the null value and then user just can select Mangement Expense and or OACQ&lt;/P&gt;&lt;P&gt;&lt;IMG alt="hide null value.jpg" class="jive-image image-1" src="/legacyfs/online/134517_hide null value.jpg" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks before.&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;&lt;/P&gt;&lt;P&gt;Valdi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Aug 2016 08:56:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Auto-hide-null-values-in-list-box/m-p/1108764#M628617</guid>
      <dc:creator />
      <dc:date>2016-08-15T08:56:09Z</dc:date>
    </item>
    <item>
      <title>Re: Auto hide null values in list box</title>
      <link>https://community.qlik.com/t5/QlikView/Auto-hide-null-values-in-list-box/m-p/1108765#M628618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Valdi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QlikView should not display Null values in the list box selection. Could you try right clicking and exporting to excel to see if it is a space &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could fix this in the loadscript with something like :&amp;nbsp; if(Field = ' ', Null(), Field) as Field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A better solution would be to fix it in the datasource&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Simon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Aug 2016 09:04:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Auto-hide-null-values-in-list-box/m-p/1108765#M628618</guid>
      <dc:creator>Simon_J</dc:creator>
      <dc:date>2016-08-15T09:04:54Z</dc:date>
    </item>
    <item>
      <title>Re: Auto hide null values in list box</title>
      <link>https://community.qlik.com/t5/QlikView/Auto-hide-null-values-in-list-box/m-p/1108766#M628619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's not a null value, but an empty string or a value of one or more spaces. Listboxes don't show nulls. If you want to hide it then you need to use an expressions like =if(Len(Trim([Expense Type]))&amp;gt;0,[Expense Type])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A better solution is to replace that value in the script with a value like '&amp;lt;N/A&amp;gt;' or '&amp;lt;missing&amp;gt;'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Aug 2016 09:08:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Auto-hide-null-values-in-list-box/m-p/1108766#M628619</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-08-15T09:08:42Z</dc:date>
    </item>
    <item>
      <title>Re: Auto hide null values in list box</title>
      <link>https://community.qlik.com/t5/QlikView/Auto-hide-null-values-in-list-box/m-p/1108767#M628620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gysbert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if I write the script&amp;nbsp; =if(Len(Trim([Expense Type]))&amp;gt;0,[Expense Type]) in the tab sort --&amp;gt; expression&lt;/P&gt;&lt;P&gt;but still not work, the empty string cannot auto hide. just move to the bottom.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Aug 2016 10:07:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Auto-hide-null-values-in-list-box/m-p/1108767#M628620</guid>
      <dc:creator />
      <dc:date>2016-08-15T10:07:26Z</dc:date>
    </item>
    <item>
      <title>Re: Auto hide null values in list box</title>
      <link>https://community.qlik.com/t5/QlikView/Auto-hide-null-values-in-list-box/m-p/1108768#M628621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, if you put that expression on the Sort tab you only change the sorting. That's why the tab has the name Sort. Go to the General tab and replace the field Expense Type with &amp;lt;expression&amp;gt; and then enter the expression I posted above.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Aug 2016 10:21:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Auto-hide-null-values-in-list-box/m-p/1108768#M628621</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-08-15T10:21:01Z</dc:date>
    </item>
  </channel>
</rss>

