<?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 Filtering a listbox in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Filtering-a-listbox/m-p/215747#M69158</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx a lot, your first solution is working very well.&lt;/P&gt;&lt;P&gt;Nicolas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Apr 2010 08:24:22 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-04-16T08:24:22Z</dc:date>
    <item>
      <title>Filtering a listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Filtering-a-listbox/m-p/215744#M69155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a question about the functionalities of a listbox in QlikView.&lt;/P&gt;&lt;P&gt;In my dashboard I have a listbox with is filled by the following column "USR_VA_LOGIN" of this query :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;LOAD "USR_ID",&lt;/P&gt;&lt;P style="font-weight: bold"&gt;"QUPR_CD",&lt;/P&gt;&lt;P style="font-weight: bold"&gt;"USR_VA_LOGIN",&lt;/P&gt;&lt;P style="font-weight: bold"&gt;SQL SELECT *&lt;/P&gt;&lt;P style="font-weight: bold"&gt;FROM dbo."TU_UTILISATEUR"&lt;/P&gt;&lt;P&gt;And I'd like to filter my listbox to recover just the USR_VA_LOGIN where QUPR_CD is not null. Is there a possibility to filter directly my listbox with a graphic option or do I have to implement a WHERE clause in my query ???&lt;/P&gt;&lt;P&gt;Thx for you help.&lt;/P&gt;&lt;P&gt;Nicolas&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Apr 2010 17:17:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filtering-a-listbox/m-p/215744#M69155</guid>
      <dc:creator />
      <dc:date>2010-04-15T17:17:28Z</dc:date>
    </item>
    <item>
      <title>Filtering a listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Filtering-a-listbox/m-p/215745#M69156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I can think of two options:&lt;/P&gt;&lt;P&gt;1. Modify the List Box to filer the Field Values using an Expression. To do this, Right Click &amp;gt; Properties &amp;gt; General Tab and, under the Field Section from the Drop down select &amp;lt;Expression&amp;gt; and the expression would be something like:&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;=if(not isnull(QUPR_CD), USR_VA_LOGIN)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;2. Create a new field in the script (no need to use a where clause) like this:&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;if(len(QUPR_CD) &amp;gt; 0, USR_VA_LOGIN) as NewFieldName&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;That's what I would do. Hope this helps.&lt;/P&gt;&lt;P&gt;Mike.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Apr 2010 17:35:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filtering-a-listbox/m-p/215745#M69156</guid>
      <dc:creator>mike_garcia</dc:creator>
      <dc:date>2010-04-15T17:35:33Z</dc:date>
    </item>
    <item>
      <title>Filtering a listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Filtering-a-listbox/m-p/215746#M69157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can load just is not null&lt;/P&gt;&lt;P style="font-weight: bold"&gt;LOAD "USR_ID",&lt;/P&gt;&lt;P style="font-weight: bold"&gt;"QUPR_CD",&lt;/P&gt;&lt;P style="font-weight: bold"&gt;"USR_VA_LOGIN",&lt;/P&gt;&lt;P style="font-weight: bold"&gt;SQL SELECT *&lt;/P&gt;&lt;P style="font-weight: bold"&gt;FROM dbo."TU_UTILISATEUR"&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;WHERE EXISTS(&lt;B&gt;"USR_VA_LOGIN"&lt;/B&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Apr 2010 18:03:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filtering-a-listbox/m-p/215746#M69157</guid>
      <dc:creator />
      <dc:date>2010-04-15T18:03:41Z</dc:date>
    </item>
    <item>
      <title>Filtering a listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Filtering-a-listbox/m-p/215747#M69158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx a lot, your first solution is working very well.&lt;/P&gt;&lt;P&gt;Nicolas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Apr 2010 08:24:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filtering-a-listbox/m-p/215747#M69158</guid>
      <dc:creator />
      <dc:date>2010-04-16T08:24:22Z</dc:date>
    </item>
  </channel>
</rss>

