<?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: How do I Group Text Values Together from Multiple Records in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-do-I-Group-Text-Values-Together-from-Multiple-Records/m-p/819303#M288859</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Worth putting a 'distinct' in there so it doesn't repeat values (if that is a possibility)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt; Concat( &lt;STRONG&gt;distinct&lt;/STRONG&gt;&amp;nbsp; Room,',')&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Nov 2014 19:00:01 GMT</pubDate>
    <dc:creator>JonnyPoole</dc:creator>
    <dc:date>2014-11-25T19:00:01Z</dc:date>
    <item>
      <title>How do I Group Text Values Together from Multiple Records</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-Group-Text-Values-Together-from-Multiple-Records/m-p/819300#M288856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a table that has multiple records for and ID based on how many Rooms are associated to that ID and I'm trying to present one record for each ID that has all the Rooms associated with the ID combined in one field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, I'm trying to convert:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Rows.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/72104_Rows.JPG.jpg" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Columns.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/72105_Columns.JPG.jpg" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2014 18:51:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-Group-Text-Values-Together-from-Multiple-Records/m-p/819300#M288856</guid>
      <dc:creator>patbuchanan</dc:creator>
      <dc:date>2014-11-25T18:51:05Z</dc:date>
    </item>
    <item>
      <title>Re: How do I Group Text Values Together from Multiple Records</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-Group-Text-Values-Together-from-Multiple-Records/m-p/819301#M288857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Depends on where you want to do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In script:&lt;/P&gt;&lt;P&gt;Load ID, Concat(distinct Room,',') as [Room(s)]&lt;BR /&gt;From Table.qvd (qvd)&lt;BR /&gt;group by ID;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In chart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dimension: ID&lt;BR /&gt;Expression: Concat(distinct Room,',')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;SKG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2014 18:58:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-Group-Text-Values-Together-from-Multiple-Records/m-p/819301#M288857</guid>
      <dc:creator>simenkg</dc:creator>
      <dc:date>2014-11-25T18:58:08Z</dc:date>
    </item>
    <item>
      <title>Re: How do I Group Text Values Together from Multiple Records</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-Group-Text-Values-Together-from-Multiple-Records/m-p/819302#M288858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;load ID, concat(Room, ', ') as Rooms&lt;/P&gt;&lt;P&gt;from yoursourcetable&lt;/P&gt;&lt;P&gt;group by ID;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2014 18:59:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-Group-Text-Values-Together-from-Multiple-Records/m-p/819302#M288858</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2014-11-25T18:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: How do I Group Text Values Together from Multiple Records</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-Group-Text-Values-Together-from-Multiple-Records/m-p/819303#M288859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Worth putting a 'distinct' in there so it doesn't repeat values (if that is a possibility)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt; Concat( &lt;STRONG&gt;distinct&lt;/STRONG&gt;&amp;nbsp; Room,',')&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2014 19:00:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-Group-Text-Values-Together-from-Multiple-Records/m-p/819303#M288859</guid>
      <dc:creator>JonnyPoole</dc:creator>
      <dc:date>2014-11-25T19:00:01Z</dc:date>
    </item>
    <item>
      <title>Re: How do I Group Text Values Together from Multiple Records</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-Group-Text-Values-Together-from-Multiple-Records/m-p/819304#M288860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree. I will edit my response.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2014 19:02:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-Group-Text-Values-Together-from-Multiple-Records/m-p/819304#M288860</guid>
      <dc:creator>simenkg</dc:creator>
      <dc:date>2014-11-25T19:02:55Z</dc:date>
    </item>
    <item>
      <title>Re: How do I Group Text Values Together from Multiple Records</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-Group-Text-Values-Together-from-Multiple-Records/m-p/819305#M288861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load ID,Concat(Room,',') as Rooms Group by ID;&lt;/P&gt;&lt;P&gt;Load * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;ID,Room&lt;/P&gt;&lt;P&gt;100,Room1&lt;/P&gt;&lt;P&gt;100,Room3&lt;/P&gt;&lt;P&gt;101,Room1&lt;/P&gt;&lt;P&gt;101,Room2&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2014 19:07:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-Group-Text-Values-Together-from-Multiple-Records/m-p/819305#M288861</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-11-25T19:07:04Z</dc:date>
    </item>
    <item>
      <title>Re: How do I Group Text Values Together from Multiple Records</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-Group-Text-Values-Together-from-Multiple-Records/m-p/819306#M288862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 12.8000001907349px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;HI Pat hope you help this&lt;/P&gt;&lt;P style="font-size: 12.8000001907349px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 12.8000001907349px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Try this both&lt;/P&gt;&lt;P style="font-size: 12.8000001907349px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 12.8000001907349px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;In script:&lt;/P&gt;&lt;P style="font-size: 12.8000001907349px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load ID, Concat(distinct Room,',') as [Room(s)]&lt;BR /&gt;From Table.qvd (qvd)&lt;BR /&gt;group by ID;&lt;/P&gt;&lt;P style="font-size: 12.8000001907349px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 12.8000001907349px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;or &lt;/P&gt;&lt;P style="font-size: 12.8000001907349px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 12.8000001907349px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load ID,Concat(Room,',') as Rooms Group by ID;&lt;/P&gt;&lt;P style="font-size: 12.8000001907349px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load * Inline&lt;/P&gt;&lt;P style="font-size: 12.8000001907349px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[&lt;/P&gt;&lt;P style="font-size: 12.8000001907349px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ID,Room&lt;/P&gt;&lt;P style="font-size: 12.8000001907349px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;100,Room1&lt;/P&gt;&lt;P style="font-size: 12.8000001907349px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;100,Room3&lt;/P&gt;&lt;P style="font-size: 12.8000001907349px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;101,Room1&lt;/P&gt;&lt;P style="font-size: 12.8000001907349px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;101,Room2&lt;/P&gt;&lt;P style="font-size: 12.8000001907349px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2014 23:40:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-Group-Text-Values-Together-from-Multiple-Records/m-p/819306#M288862</guid>
      <dc:creator />
      <dc:date>2014-11-25T23:40:40Z</dc:date>
    </item>
  </channel>
</rss>

