<?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 values in single column in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Multiple-values-in-single-column/m-p/1826892#M68020</link>
    <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/138713"&gt;@jpjust&lt;/a&gt;&amp;nbsp; with concat you must add group by&lt;/P&gt;&lt;P&gt;for example :&lt;/P&gt;&lt;LI-CODE lang="python"&gt;Input:

LOAD * INLINE [
Dataconnectionname,tag

ABC,Europe

ABC,US
];

output:
noconcatenate

load Dataconnectionname,concat(tag,',') as tag resident Input group by Dataconnectionname;

drop table Input;&lt;/LI-CODE&gt;&lt;P&gt;the output:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Taoufiq_Zarra_0-1628174216492.png"&gt;&lt;img src="https://community.qlik.com/skins/images/C5FA59D18544CB42600F6BC5E9F00E2B/responsive_peak/images/image_not_found.png" alt="Taoufiq_Zarra_0-1628174216492.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 05 Aug 2021 14:37:07 GMT</pubDate>
    <dc:creator>Taoufiq_Zarra</dc:creator>
    <dc:date>2021-08-05T14:37:07Z</dc:date>
    <item>
      <title>Multiple values in single column</title>
      <link>https://community.qlik.com/t5/App-Development/Multiple-values-in-single-column/m-p/1826888#M68018</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have an table as below . Basically I tagged dataconnections in QMC.&lt;/P&gt;&lt;P&gt;Dataconnectionname&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; tag&lt;/P&gt;&lt;P&gt;ABC&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Europe&lt;/P&gt;&lt;P&gt;ABC&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; US&lt;/P&gt;&lt;P&gt;&amp;nbsp;I want the table as below. (Tag values in one row)&lt;/P&gt;&lt;P&gt;Dataconnectionname&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; tag&lt;/P&gt;&lt;P&gt;ABC&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Europe,&amp;nbsp;US&lt;/P&gt;&lt;P&gt;Following is part of the script that output the above table.&lt;/P&gt;&lt;P&gt;Tags:&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;[__KEY_root],&lt;BR /&gt;&amp;nbsp;concat([name_tag] , ',') as Tag.&lt;BR /&gt;RESIDENT RestConnectorMasterTable&lt;BR /&gt;WHERE NOT IsNull([__FK_tags]);&lt;/P&gt;&lt;P&gt;[DataConnections]:&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;[__KEY_root],&lt;BR /&gt;[DataConnectionName]&lt;BR /&gt;RESIDENT RestConnectorMasterTable&lt;BR /&gt;WHERE NOT IsNull([__KEY_root]);&lt;/P&gt;&lt;P&gt;I tried this&amp;nbsp;concat([name_tag] , ',')&amp;nbsp; &amp;nbsp;in script but did not work with invalid expression.&lt;/P&gt;&lt;P&gt;Please let me know how to resolve this.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 05 Aug 2021 14:14:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Multiple-values-in-single-column/m-p/1826888#M68018</guid>
      <dc:creator>jpjust</dc:creator>
      <dc:date>2021-08-05T14:14:25Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple values in single column</title>
      <link>https://community.qlik.com/t5/App-Development/Multiple-values-in-single-column/m-p/1826892#M68020</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/138713"&gt;@jpjust&lt;/a&gt;&amp;nbsp; with concat you must add group by&lt;/P&gt;&lt;P&gt;for example :&lt;/P&gt;&lt;LI-CODE lang="python"&gt;Input:

LOAD * INLINE [
Dataconnectionname,tag

ABC,Europe

ABC,US
];

output:
noconcatenate

load Dataconnectionname,concat(tag,',') as tag resident Input group by Dataconnectionname;

drop table Input;&lt;/LI-CODE&gt;&lt;P&gt;the output:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Taoufiq_Zarra_0-1628174216492.png"&gt;&lt;img src="https://community.qlik.com/skins/images/C5FA59D18544CB42600F6BC5E9F00E2B/responsive_peak/images/image_not_found.png" alt="Taoufiq_Zarra_0-1628174216492.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Aug 2021 14:37:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Multiple-values-in-single-column/m-p/1826892#M68020</guid>
      <dc:creator>Taoufiq_Zarra</dc:creator>
      <dc:date>2021-08-05T14:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple values in single column</title>
      <link>https://community.qlik.com/t5/App-Development/Multiple-values-in-single-column/m-p/1827149#M68052</link>
      <description>&lt;P&gt;Thank you so much.&amp;nbsp;&lt;/P&gt;&lt;P&gt;My situation is like this. Please let me know how to accomplish.&lt;/P&gt;&lt;P&gt;[DataConnections]:&lt;BR /&gt;LOAD [id_u2] AS [DataConnectionID],&lt;BR /&gt;[name_u1] AS [DataConnectionName],&lt;BR /&gt;[__KEY_root]&lt;BR /&gt;RESIDENT RestConnectorMasterTable&lt;BR /&gt;WHERE NOT IsNull ([__KEY_root]);&lt;/P&gt;&lt;P&gt;[tags]:&lt;BR /&gt;LOAD&lt;BR /&gt;[id_u7],&lt;BR /&gt;[__FK_tags] AS [__KEY_root],&lt;BR /&gt;[name_tag] AS tag&lt;BR /&gt;RESIDENT RestConnectorMasterTable&lt;BR /&gt;WHERE NOT IsNull([__FK_tags]);&lt;/P&gt;&lt;P&gt;Now, in the above script, how can I do an group by and get the table output that I need.&lt;/P&gt;&lt;P&gt;The common field between both the table is&amp;nbsp;&amp;nbsp;[__KEY_root]&lt;/P&gt;&lt;P&gt;Dataconnectionname&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; tag&lt;/P&gt;&lt;P&gt;ABC&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Europe,&amp;nbsp;US&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Aug 2021 14:58:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Multiple-values-in-single-column/m-p/1827149#M68052</guid>
      <dc:creator>jpjust</dc:creator>
      <dc:date>2021-08-06T14:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple values in single column</title>
      <link>https://community.qlik.com/t5/App-Development/Multiple-values-in-single-column/m-p/1827152#M68053</link>
      <description>&lt;P&gt;Maye be like :&lt;/P&gt;&lt;P&gt;DataConnections:&lt;BR /&gt;LOAD [id_u2] AS [DataConnectionID],&lt;BR /&gt;[name_u1] AS [DataConnectionName],&lt;BR /&gt;[__KEY_root]&lt;BR /&gt;RESIDENT RestConnectorMasterTable&lt;BR /&gt;WHERE NOT IsNull ([__KEY_root]);&lt;/P&gt;&lt;P&gt;left join&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;[id_u7],&lt;BR /&gt;[__FK_tags] AS [__KEY_root],&lt;BR /&gt;[name_tag] AS tag&lt;BR /&gt;RESIDENT RestConnectorMasterTable&lt;BR /&gt;WHERE NOT IsNull([__FK_tags]);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;output:&lt;BR /&gt;noconcatenate&lt;/P&gt;&lt;P&gt;load DataConnectionName,concat(tag,',') as tag resident DataConnections group by DataConnectionName;&lt;/P&gt;&lt;P&gt;drop table DataConnections;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Aug 2021 15:05:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Multiple-values-in-single-column/m-p/1827152#M68053</guid>
      <dc:creator>Taoufiq_Zarra</dc:creator>
      <dc:date>2021-08-06T15:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple values in single column</title>
      <link>https://community.qlik.com/t5/App-Development/Multiple-values-in-single-column/m-p/1827156#M68054</link>
      <description>&lt;P&gt;That worked. Really, Thanks much.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Aug 2021 15:24:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Multiple-values-in-single-column/m-p/1827156#M68054</guid>
      <dc:creator>jpjust</dc:creator>
      <dc:date>2021-08-06T15:24:55Z</dc:date>
    </item>
  </channel>
</rss>

