<?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: Exclude (filter out) certain values from List Box in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Exclude-filter-out-certain-values-from-List-Box/m-p/1053483#M353388</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A href="https://community.qlik.com/qlik-users/93385"&gt;trung.nguyen&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can try 'If' Expression in the list box as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(Year &amp;lt;&amp;gt; '0',&lt;/P&gt;&lt;P&gt;if(Year &amp;lt;&amp;gt; 'N/A',&lt;/P&gt;&lt;P&gt;if(Year &amp;lt;&amp;gt; ' ', Year)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QVW Attached.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Feb 2016 22:18:05 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-02-29T22:18:05Z</dc:date>
    <item>
      <title>Exclude (filter out) certain values from List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-filter-out-certain-values-from-List-Box/m-p/1053480#M353385</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;This "should' be an easy one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using a list box as a filter for my data presentation.&amp;nbsp; There are some blanks and unwanted values in my data that I do not want to show in the list box.&amp;nbsp; I'm not able to filter them out. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, the data contains only these values (2015, 2016, 2017, N/A, 0, blank cells)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to only show 2015, 2016, 2017 in my list box.&amp;nbsp; I'm using an expression to try to filter out the other stuff.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;SPAN style="color: #0000ff;"&gt;if&lt;/SPAN&gt;( (&lt;SPAN style="color: #800000;"&gt;[Year]&lt;/SPAN&gt;&amp;lt;&amp;gt;' ' &lt;SPAN style="color: #0000ff;"&gt;or&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;[Year]&lt;/SPAN&gt;&amp;lt;&amp;gt;'0' or &lt;SPAN style="color: #800000;"&gt;[Year]&lt;/SPAN&gt;&amp;lt;&amp;gt;'N/A'), &lt;SPAN style="color: #800000;"&gt;[Year&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;]&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt;"&gt;) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;Unfortunately...not working.&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;Please advise.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;Thank you&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Feb 2016 21:02:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-filter-out-certain-values-from-List-Box/m-p/1053480#M353385</guid>
      <dc:creator />
      <dc:date>2016-02-29T21:02:17Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude (filter out) certain values from List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-filter-out-certain-values-from-List-Box/m-p/1053481#M353386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you want to use the AND operator here:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;SPAN style="color: #0000ff;"&gt;if&lt;/SPAN&gt;( (&lt;SPAN style="color: #800000;"&gt;[Year]&lt;/SPAN&gt;&amp;lt;&amp;gt;' ' &lt;SPAN style="color: #0000ff;"&gt;AND &lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;[Year]&lt;/SPAN&gt;&amp;lt;&amp;gt;'0' AND &lt;SPAN style="color: #800000;"&gt;[Year]&lt;/SPAN&gt;&amp;lt;&amp;gt;'N/A'), &lt;SPAN style="color: #800000;"&gt;[Year&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;]&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt;"&gt;) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;or &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;try&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;=If( [Year] &amp;gt; 0 , [Year])&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Feb 2016 21:44:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-filter-out-certain-values-from-List-Box/m-p/1053481#M353386</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-02-29T21:44:05Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude (filter out) certain values from List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-filter-out-certain-values-from-List-Box/m-p/1053482#M353387</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;You can try this&lt;/P&gt;&lt;P&gt;=if (len ([Year]&amp;gt;3, [Year])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Philippe &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Feb 2016 21:52:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-filter-out-certain-values-from-List-Box/m-p/1053482#M353387</guid>
      <dc:creator />
      <dc:date>2016-02-29T21:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude (filter out) certain values from List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-filter-out-certain-values-from-List-Box/m-p/1053483#M353388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A href="https://community.qlik.com/qlik-users/93385"&gt;trung.nguyen&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can try 'If' Expression in the list box as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(Year &amp;lt;&amp;gt; '0',&lt;/P&gt;&lt;P&gt;if(Year &amp;lt;&amp;gt; 'N/A',&lt;/P&gt;&lt;P&gt;if(Year &amp;lt;&amp;gt; ' ', Year)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QVW Attached.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Feb 2016 22:18:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-filter-out-certain-values-from-List-Box/m-p/1053483#M353388</guid>
      <dc:creator />
      <dc:date>2016-02-29T22:18:05Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude (filter out) certain values from List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-filter-out-certain-values-from-List-Box/m-p/1053484#M353389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry i have forgotten à ')'.&lt;/P&gt;&lt;P&gt;=if (len ([Year])&amp;gt;3, [Year])&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Feb 2016 22:46:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-filter-out-certain-values-from-List-Box/m-p/1053484#M353389</guid>
      <dc:creator />
      <dc:date>2016-02-29T22:46:14Z</dc:date>
    </item>
  </channel>
</rss>

