<?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: Multiple attributes in single List Box in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Multiple-attributes-in-single-List-Box/m-p/1093842#M937075</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or maybe use a Multi Box.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Feb 2016 20:37:14 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-02-10T20:37:14Z</dc:date>
    <item>
      <title>Multiple attributes in single List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-attributes-in-single-List-Box/m-p/1093840#M937073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi There&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Can we have more than one attributes in single list box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g I have 4 columns in database &lt;/P&gt;&lt;P&gt;Player, Rank , State, City&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to create one list box for all above attributes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance, &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 20:33:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-attributes-in-single-List-Box/m-p/1093840#M937073</guid>
      <dc:creator>ashishpalkar</dc:creator>
      <dc:date>2016-02-10T20:33:06Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple attributes in single List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-attributes-in-single-List-Box/m-p/1093841#M937074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can concatenate them in the script and create a Link table to do this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 20:34:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-attributes-in-single-List-Box/m-p/1093841#M937074</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-10T20:34:31Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple attributes in single List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-attributes-in-single-List-Box/m-p/1093842#M937075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or maybe use a Multi Box.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 20:37:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-attributes-in-single-List-Box/m-p/1093842#M937075</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-02-10T20:37:14Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple attributes in single List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-attributes-in-single-List-Box/m-p/1093843#M937076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be something along these lines:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD *,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; AutoNumber(Player&amp;amp;'|'&amp;amp;Rank&amp;amp;'|'&amp;amp;State&amp;amp;'|'&amp;amp;City) as UI&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Inline [&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Player, Rank, State, City&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;A, 2, NJ, xyz&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;B, 5, NY, 32&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LinkTable:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Player as Field,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; UI&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident Table;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Concatenate(LinkTable)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Rank as Field,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; UI&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident Table;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Concatenate(LinkTable)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD State as Field,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; UI&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident Table;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Concatenate(LinkTable)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD City as Field,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; UI&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident Table;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/114237_Capture.PNG" style="height: auto;" /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Data Model:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/114238_Capture.PNG" style="height: auto;" /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 20:38:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-attributes-in-single-List-Box/m-p/1093843#M937076</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-10T20:38:45Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple attributes in single List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-attributes-in-single-List-Box/m-p/1093844#M937077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Sunny,, the 4 columns are coming from different tables.. still same solution will work?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 20:44:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-attributes-in-single-List-Box/m-p/1093844#M937077</guid>
      <dc:creator>ashishpalkar</dc:creator>
      <dc:date>2016-02-10T20:44:02Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple attributes in single List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-attributes-in-single-List-Box/m-p/1093845#M937078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Multi Box wont help in this situation.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 20:47:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-attributes-in-single-List-Box/m-p/1093845#M937078</guid>
      <dc:creator>ashishpalkar</dc:creator>
      <dc:date>2016-02-10T20:47:04Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple attributes in single List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-attributes-in-single-List-Box/m-p/1093846#M937079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A combination of multiple list boxes is usually called a &lt;EM&gt;table box&lt;/EM&gt;. Try it out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 21:09:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-attributes-in-single-List-Box/m-p/1093846#M937079</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2016-02-10T21:09:02Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple attributes in single List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-attributes-in-single-List-Box/m-p/1093847#M937080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Some modifications will be required (the UI will be associated to the UI from that table and a Link table will be need), but the idea is still going to be same. If you can share a sample of how the data is, we might be able to help better &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 21:09:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-attributes-in-single-List-Box/m-p/1093847#M937080</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-10T21:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple attributes in single List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-attributes-in-single-List-Box/m-p/1093848#M937081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find attachment, would like City , State , Name and Rank in one single list box.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 21:22:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-attributes-in-single-List-Box/m-p/1093848#M937081</guid>
      <dc:creator>ashishpalkar</dc:creator>
      <dc:date>2016-02-10T21:22:46Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple attributes in single List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-attributes-in-single-List-Box/m-p/1093849#M937082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure what the idea is, but may be this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Name, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Age, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Married&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Book1.xlsx&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(ooxml, embedded labels, table is Players);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD City, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Population&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Book1.xlsx&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(ooxml, embedded labels, table is City);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Rank, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Team&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Book1.xlsx&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(ooxml, embedded labels, table is Rank);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD State, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Region&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Book1.xlsx&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(ooxml, embedded labels, table is State);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ListBox:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Name as Field,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Name&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident Players;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Concatenate(ListBox)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD City as Field,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; City&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident City;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Concatenate(ListBox)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD State as Field,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; State&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident State;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Concatenate(ListBox)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Rank as Field,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Rank&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident Rank;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 21:33:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-attributes-in-single-List-Box/m-p/1093849#M937082</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-10T21:33:53Z</dc:date>
    </item>
  </channel>
</rss>

