<?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 for a multiple option field in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/List-box-for-a-multiple-option-field/m-p/661929#M474564</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to include the source field (Outcome) to provide linkage. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG&gt;Outcome,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; subfield(Outcome,' ') as OutcomeItem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;RESIDENT Raw_Data;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Sep 2014 06:36:13 GMT</pubDate>
    <dc:creator>rwunderlich</dc:creator>
    <dc:date>2014-09-10T06:36:13Z</dc:date>
    <item>
      <title>List box for a multiple option field</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-for-a-multiple-option-field/m-p/661925#M474560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a field that comes from multiple option data.&amp;nbsp; The multiple options have been combined into one field with the responses separated by spaces.&amp;nbsp; For example,&lt;BR /&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Pain FirstAid Medicine&lt;/P&gt;&lt;P&gt;2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FirstAid&lt;/P&gt;&lt;P&gt;3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Pain Medicine&lt;/P&gt;&lt;P&gt;4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Pain ReferGP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to create a list box with the four values Pain, FirstAid, Medicine, ReferGP and then by clicking on one of the options select all records with that particular value.&amp;nbsp; For example by selecting Pain, records 1,3 and 4 would be selected, by selecting Medicine records 1 and 3 would be selected.&lt;/P&gt;&lt;P&gt;Does anyone know how I can do this?&amp;nbsp; I have played around with list boxes without much success.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2014 04:58:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-for-a-multiple-option-field/m-p/661925#M474560</guid>
      <dc:creator />
      <dc:date>2014-09-10T04:58:43Z</dc:date>
    </item>
    <item>
      <title>Re: List box for a multiple option field</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-for-a-multiple-option-field/m-p/661926#M474561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's probably easiest if you separate the treatments into distinct items using subfield():&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; *&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; ,subfield(Treatments, ' ') as TreatmentItem&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Inline [&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;RecID, Treatments&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;1,&amp;nbsp;&amp;nbsp;&amp;nbsp; Pain FirstAid Medicine&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;2,&amp;nbsp;&amp;nbsp;&amp;nbsp; FirstAid&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;3,&amp;nbsp;&amp;nbsp;&amp;nbsp; Pain Medicine&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;4,&amp;nbsp;&amp;nbsp;&amp;nbsp; Pain ReferGP&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then create a listbox for TreatmentItem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2014 05:17:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-for-a-multiple-option-field/m-p/661926#M474561</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2014-09-10T05:17:13Z</dc:date>
    </item>
    <item>
      <title>Re: List box for a multiple option field</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-for-a-multiple-option-field/m-p/661927#M474562</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;Use this script &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load FieldName,SubField(FieldName,' ') as Keyword Inline [&lt;/P&gt;&lt;P&gt;FieldName &lt;/P&gt;&lt;P&gt;Pain FirstAid Medicine&lt;/P&gt;&lt;P&gt;FirstAid&lt;/P&gt;&lt;P&gt;Pain Medicine&lt;/P&gt;&lt;P&gt;Pain ReferGP ];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2014 05:28:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-for-a-multiple-option-field/m-p/661927#M474562</guid>
      <dc:creator />
      <dc:date>2014-09-10T05:28:05Z</dc:date>
    </item>
    <item>
      <title>Re: List box for a multiple option field</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-for-a-multiple-option-field/m-p/661928#M474563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the prompt reply.&amp;nbsp; I tried the following&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; subfield(Outcome,' ') as OutcomeItem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RESIDENT Raw_Data;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and it created the fields okay but when the list box is created the selections do not work.&amp;nbsp; The link to the original data seems to have gone.&amp;nbsp; Any suggestions?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2014 06:28:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-for-a-multiple-option-field/m-p/661928#M474563</guid>
      <dc:creator />
      <dc:date>2014-09-10T06:28:00Z</dc:date>
    </item>
    <item>
      <title>Re: List box for a multiple option field</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-for-a-multiple-option-field/m-p/661929#M474564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to include the source field (Outcome) to provide linkage. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG&gt;Outcome,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; subfield(Outcome,' ') as OutcomeItem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;RESIDENT Raw_Data;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2014 06:36:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-for-a-multiple-option-field/m-p/661929#M474564</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2014-09-10T06:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: List box for a multiple option field</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-for-a-multiple-option-field/m-p/661930#M474565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Rob.&amp;nbsp; That works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2014 22:44:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-for-a-multiple-option-field/m-p/661930#M474565</guid>
      <dc:creator />
      <dc:date>2014-09-10T22:44:19Z</dc:date>
    </item>
  </channel>
</rss>

