<?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: Conditional Listbox Entries in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Conditional-Listbox-Entries/m-p/511804#M1147778</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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The reason for that is you have calculated listbox, those are not directly coming from table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Thus when you select value from a calculated listbox, it will by default select the relevant values from relevant fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Jul 2013 11:02:19 GMT</pubDate>
    <dc:creator>kaushiknsolanki</dc:creator>
    <dc:date>2013-07-23T11:02:19Z</dc:date>
    <item>
      <title>Conditional Listbox Entries</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-Listbox-Entries/m-p/511803#M1147777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a sample dashboard we try to conditionally populate the listbox entries the end-users can select. Besides the listbox there is a slider embedded in the dashboard which dynamically allows the listbox entries to be "filtered". The use case is as follows:&lt;/P&gt;&lt;P&gt;1. User selects a suitable slider value;&lt;/P&gt;&lt;P&gt;2. List box entries are updated according to the new slider value;&lt;/P&gt;&lt;P&gt;3. User selects a value in the list box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem we are facing is that the selected listbox value also selects other values (e.g. score). A short screencast is available at &lt;A class="loading" href="http://www.screencast.com/t/SQEdxJI0" title="http://www.screencast.com/t/SQEdxJI0"&gt;http://www.screencast.com/t/SQEdxJI0&lt;/A&gt; which highlights the problem. The sample dashboard is attached as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any pointers as to prevent the additional selection is appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Alex&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Environment: Windows 7, QlikView 11.20.11922.0 SR2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load Script:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;// threshold variable&lt;/P&gt;&lt;P&gt;SET vThreshold = 0.3;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// load profile data&lt;/P&gt;&lt;P&gt;LOAD id,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; firstname,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; year&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;profiles.csv&lt;/P&gt;&lt;P&gt;(txt, utf8, embedded labels, delimiter is ',', msq);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// load profile score data&lt;/P&gt;&lt;P&gt;LOAD profile, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; id, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; score&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;scores.csv&lt;/P&gt;&lt;P&gt;(txt, utf8, embedded labels, delimiter is ',', msq);&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Listbox expression:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;=if(score &amp;gt;= vThreshold, year)&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jul 2013 10:53:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-Listbox-Entries/m-p/511803#M1147777</guid>
      <dc:creator />
      <dc:date>2013-07-23T10:53:51Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional Listbox Entries</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-Listbox-Entries/m-p/511804#M1147778</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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The reason for that is you have calculated listbox, those are not directly coming from table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Thus when you select value from a calculated listbox, it will by default select the relevant values from relevant fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jul 2013 11:02:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-Listbox-Entries/m-p/511804#M1147778</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2013-07-23T11:02:19Z</dc:date>
    </item>
  </channel>
</rss>

