<?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: List box selection in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/List-box-selection/m-p/767588#M272634</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i would suggest to create filtering data in script&lt;/P&gt;&lt;P&gt;something like following should help see attached example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OrigTable:&lt;/P&gt;&lt;P&gt;Load *&lt;/P&gt;&lt;P&gt;Inline [&lt;/P&gt;&lt;P&gt;&amp;nbsp; Field, Group&lt;/P&gt;&lt;P&gt;&amp;nbsp; a, 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; b, 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; c, 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; d, 2&lt;/P&gt;&lt;P&gt;&amp;nbsp; e, 2&lt;/P&gt;&lt;P&gt;&amp;nbsp; f, 2&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* get good field values filtering themselves&amp;nbsp; */&lt;/P&gt;&lt;P&gt;NewTable:&lt;/P&gt;&lt;P&gt;LOAD Field as ParentField,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field // child field to filter, links to existing data model&lt;/P&gt;&lt;P&gt;Resident OrigTable&lt;/P&gt;&lt;P&gt;Where Group = 1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* now produce all combinations (cartasian) of group 1 and 2 */&lt;/P&gt;&lt;P&gt;tmpTable:&lt;/P&gt;&lt;P&gt;LOAD Field as ParentField&lt;/P&gt;&lt;P&gt;Resident OrigTable&lt;/P&gt;&lt;P&gt;Where Group = 1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Join(tmpTable)&lt;/P&gt;&lt;P&gt;LOAD Field&lt;/P&gt;&lt;P&gt;Resident OrigTable&lt;/P&gt;&lt;P&gt;Where Group = 2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate(NewTable)&lt;/P&gt;&lt;P&gt;LOAD * Resident tmpTable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table tmpTable; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Nov 2014 00:35:02 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-11-05T00:35:02Z</dc:date>
    <item>
      <title>List box selection</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-selection/m-p/767586#M272632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi I have a field &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field&lt;/P&gt;&lt;P&gt;a&lt;/P&gt;&lt;P&gt;b&lt;/P&gt;&lt;P&gt;c&lt;/P&gt;&lt;P&gt;d&lt;/P&gt;&lt;P&gt;e&lt;/P&gt;&lt;P&gt;f&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now the requirement is to make a list box which will contain just a b c and if we select any of the a b or c ,d,e,f should always be selected.&lt;/P&gt;&lt;P&gt;In other words d,e,f should always be selected and give the user the option only to select from a,b,c (if we do not show d,e,f in the list box its a bonus)&lt;/P&gt;&lt;P&gt;Any thoughts on how to accomplish this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2014 00:04:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-selection/m-p/767586#M272632</guid>
      <dc:creator />
      <dc:date>2014-11-05T00:04:20Z</dc:date>
    </item>
    <item>
      <title>Re: List box selection</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-selection/m-p/767587#M272633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there are many ways.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the listbox values are static, you may create additional column in script using if statement(if (match(col1,'a','b','c'),col1)). use this column for list box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;if your values is dynamic and falling under certain scenario, you can use that condition to pick only those values into additoinal column and make use it for your list box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;If you really don't need these rows you can restrict them in dimension table it self in query using where clause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chinna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2014 00:20:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-selection/m-p/767587#M272633</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-11-05T00:20:20Z</dc:date>
    </item>
    <item>
      <title>Re: List box selection</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-selection/m-p/767588#M272634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i would suggest to create filtering data in script&lt;/P&gt;&lt;P&gt;something like following should help see attached example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OrigTable:&lt;/P&gt;&lt;P&gt;Load *&lt;/P&gt;&lt;P&gt;Inline [&lt;/P&gt;&lt;P&gt;&amp;nbsp; Field, Group&lt;/P&gt;&lt;P&gt;&amp;nbsp; a, 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; b, 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; c, 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; d, 2&lt;/P&gt;&lt;P&gt;&amp;nbsp; e, 2&lt;/P&gt;&lt;P&gt;&amp;nbsp; f, 2&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* get good field values filtering themselves&amp;nbsp; */&lt;/P&gt;&lt;P&gt;NewTable:&lt;/P&gt;&lt;P&gt;LOAD Field as ParentField,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field // child field to filter, links to existing data model&lt;/P&gt;&lt;P&gt;Resident OrigTable&lt;/P&gt;&lt;P&gt;Where Group = 1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* now produce all combinations (cartasian) of group 1 and 2 */&lt;/P&gt;&lt;P&gt;tmpTable:&lt;/P&gt;&lt;P&gt;LOAD Field as ParentField&lt;/P&gt;&lt;P&gt;Resident OrigTable&lt;/P&gt;&lt;P&gt;Where Group = 1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Join(tmpTable)&lt;/P&gt;&lt;P&gt;LOAD Field&lt;/P&gt;&lt;P&gt;Resident OrigTable&lt;/P&gt;&lt;P&gt;Where Group = 2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate(NewTable)&lt;/P&gt;&lt;P&gt;LOAD * Resident tmpTable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table tmpTable; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2014 00:35:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-selection/m-p/767588#M272634</guid>
      <dc:creator />
      <dc:date>2014-11-05T00:35:02Z</dc:date>
    </item>
    <item>
      <title>Re: List box selection</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-selection/m-p/767589#M272635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the problem with this is, if i choose a then d,e,f do not get selected only a gets selected, my requirement is if&amp;nbsp; a is selected then a,d,e,f should get selected or if b is selected then b,d,e,f is selected&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2014 00:39:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-selection/m-p/767589#M272635</guid>
      <dc:creator />
      <dc:date>2014-11-05T00:39:05Z</dc:date>
    </item>
    <item>
      <title>Re: List box selection</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-selection/m-p/767590#M272636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can create field event trigger (OnChange) on this &lt;STRONG&gt;ParentField&lt;/STRONG&gt; and make further selections on &lt;STRONG&gt;Field&lt;/STRONG&gt; value itself&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2014 01:05:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-selection/m-p/767590#M272636</guid>
      <dc:creator />
      <dc:date>2014-11-05T01:05:41Z</dc:date>
    </item>
  </channel>
</rss>

