<?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: hiding values in listbox in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/hiding-values-in-listbox/m-p/962879#M330318</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;Would depend how the data is kept in your data model, but for the example supplied it would be&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;If(Cost&amp;gt;=1000, Product)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;As a few people have already suggested.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;You could also do this is script as well i&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;n the load script.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;If(Cost&amp;gt;=1000, Product) as ProductCost group.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Dec 2015 09:20:02 GMT</pubDate>
    <dc:creator>Mark_Little</dc:creator>
    <dc:date>2015-12-21T09:20:02Z</dc:date>
    <item>
      <title>hiding values in listbox</title>
      <link>https://community.qlik.com/t5/QlikView/hiding-values-in-listbox/m-p/962875#M330314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there any way to hide specific values depending on other fields in a listbox?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is my datebase &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid rgb(0, 0, 0); width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align:center;background-color:#6690BC;color:#ffffff;padding:2px;" valign="middle"&gt;&lt;STRONG&gt;Product&lt;BR /&gt;&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Cost&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;A&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;100&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;B&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;5000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;C&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;4000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;D&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;6000&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I want to create is a listbox which only shows the products with costs over 1000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Listbox&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid rgb(0, 0, 0); width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Product&lt;BR /&gt;&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px; text-align: center;"&gt;B&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px; text-align: center;"&gt;C&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px; text-align: center;"&gt;D&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This Listbox ignores/hides the product A as its cost is below 1000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any way how to create a listbox like this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2015 09:04:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/hiding-values-in-listbox/m-p/962875#M330314</guid>
      <dc:creator>thanhphongle</dc:creator>
      <dc:date>2015-12-21T09:04:51Z</dc:date>
    </item>
    <item>
      <title>Re: hiding values in listbox</title>
      <link>https://community.qlik.com/t5/QlikView/hiding-values-in-listbox/m-p/962876#M330315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Instead of selecting the field directly in the list box, use expression like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(Cost&amp;gt;=1000, Product)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2015 09:07:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/hiding-values-in-listbox/m-p/962876#M330315</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2015-12-21T09:07:45Z</dc:date>
    </item>
    <item>
      <title>Re: hiding values in listbox</title>
      <link>https://community.qlik.com/t5/QlikView/hiding-values-in-listbox/m-p/962877#M330316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you specifically want to create the Listbox then write below expression in listbox&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=&lt;STRONG&gt;aggr&lt;/STRONG&gt;(if(sum(Cost)&amp;gt;1000,Product),&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Product)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2015 09:11:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/hiding-values-in-listbox/m-p/962877#M330316</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2015-12-21T09:11:30Z</dc:date>
    </item>
    <item>
      <title>Re: hiding values in listbox</title>
      <link>https://community.qlik.com/t5/QlikView/hiding-values-in-listbox/m-p/962878#M330317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See the attached, create lookup with the expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(Cost&amp;gt;=1000, Product)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See sample qvw&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2015 09:16:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/hiding-values-in-listbox/m-p/962878#M330317</guid>
      <dc:creator>awhitfield</dc:creator>
      <dc:date>2015-12-21T09:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: hiding values in listbox</title>
      <link>https://community.qlik.com/t5/QlikView/hiding-values-in-listbox/m-p/962879#M330318</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;Would depend how the data is kept in your data model, but for the example supplied it would be&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;If(Cost&amp;gt;=1000, Product)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;As a few people have already suggested.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;You could also do this is script as well i&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;n the load script.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;If(Cost&amp;gt;=1000, Product) as ProductCost group.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2015 09:20:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/hiding-values-in-listbox/m-p/962879#M330318</guid>
      <dc:creator>Mark_Little</dc:creator>
      <dc:date>2015-12-21T09:20:02Z</dc:date>
    </item>
    <item>
      <title>Re: hiding values in listbox</title>
      <link>https://community.qlik.com/t5/QlikView/hiding-values-in-listbox/m-p/962880#M330319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your response! Every suggested solution is working well!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2015 09:20:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/hiding-values-in-listbox/m-p/962880#M330319</guid>
      <dc:creator>thanhphongle</dc:creator>
      <dc:date>2015-12-21T09:20:05Z</dc:date>
    </item>
  </channel>
</rss>

