<?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: Aggregate Text Data (Concat Function, ...) in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Aggregate-Text-Data-Concat-Function/m-p/1069006#M357177</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe you are looking for a front end solution:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Concat(Aggr(Letter &amp;amp; ' = ' &amp;amp; Count(Letter), Letter),',')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Apr 2016 15:55:55 GMT</pubDate>
    <dc:creator>swuehl</dc:creator>
    <dc:date>2016-04-20T15:55:55Z</dc:date>
    <item>
      <title>Aggregate Text Data (Concat Function, ...)</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregate-Text-Data-Concat-Function/m-p/1069004#M357175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is it possible to extent the concat function with aggregation functions?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the following table.:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; * &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;INLINE&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[&lt;BR /&gt; Letter&lt;BR /&gt; A&lt;BR /&gt; A&lt;BR /&gt; B&lt;BR /&gt; B&lt;BR /&gt; B&lt;BR /&gt; C&lt;BR /&gt; C&lt;BR /&gt; C&lt;BR /&gt; ]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;I need to count the letters and save the result in in one string:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;A = 2, B = 3, C = 3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;I tried something like &lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;concat&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;DISTINCT&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; Letter&amp;amp;COUNT(Letter),', ')&lt;BR /&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Does anyone has an idea to solve this problem?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;thanks and best regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2016 13:12:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregate-Text-Data-Concat-Function/m-p/1069004#M357175</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-04-20T13:12:25Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregate Text Data (Concat Function, ...)</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregate-Text-Data-Concat-Function/m-p/1069005#M357176</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Concat(New, ', ') as Final;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Only(Letter) &amp;amp; ' = ' &amp;amp; Count(Letter) as New&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Group By Letter;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * INLINE [&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Letter&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;A&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;A&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;B&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;B&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;B&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;C&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;C&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;C&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2016 15:40:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregate-Text-Data-Concat-Function/m-p/1069005#M357176</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-04-20T15:40:12Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregate Text Data (Concat Function, ...)</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregate-Text-Data-Concat-Function/m-p/1069006#M357177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe you are looking for a front end solution:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Concat(Aggr(Letter &amp;amp; ' = ' &amp;amp; Count(Letter), Letter),',')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2016 15:55:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregate-Text-Data-Concat-Function/m-p/1069006#M357177</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-04-20T15:55:55Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregate Text Data (Concat Function, ...)</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregate-Text-Data-Concat-Function/m-p/1069007#M357178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks! awesome &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, 20 Apr 2016 16:06:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregate-Text-Data-Concat-Function/m-p/1069007#M357178</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-04-20T16:06:37Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregate Text Data (Concat Function, ...)</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregate-Text-Data-Concat-Function/m-p/1069008#M357179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please close this thread if you got what you were looking for &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-14806"&gt;Qlik Community Tip: Marking Replies as Correct or Helpful&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2016 16:09:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregate-Text-Data-Concat-Function/m-p/1069008#M357179</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-04-20T16:09:36Z</dc:date>
    </item>
  </channel>
</rss>

