<?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: Combining multiple rows into one row separated by commas in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Combining-multiple-rows-into-one-row-separated-by-commas/m-p/1635272#M47331</link>
    <description>&lt;P&gt;Thank you so much Martin.&lt;/P&gt;</description>
    <pubDate>Tue, 15 Oct 2019 09:03:55 GMT</pubDate>
    <dc:creator>vaisgaard</dc:creator>
    <dc:date>2019-10-15T09:03:55Z</dc:date>
    <item>
      <title>Combining multiple rows into one row separated by commas</title>
      <link>https://community.qlik.com/t5/App-Development/Combining-multiple-rows-into-one-row-separated-by-commas/m-p/1634967#M47306</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a table where I need to convert the rows into one field. The values shall be separated by a comma.&lt;/P&gt;&lt;P&gt;Eg.&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;BR /&gt;Cause&lt;BR /&gt;Missing value&lt;BR /&gt;Missing signature&lt;BR /&gt;Dataformat not correct&lt;BR /&gt;&lt;SPAN&gt;];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The end result should be a field called Causes and the value should be Missing value, Missing signature, Dataformat not correct.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I have tried looping through the values using a variable and just adding values to the same field in the load script. I just can't figure this one out.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I hope someone can help me.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;BR&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Michael&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Oct 2019 14:06:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Combining-multiple-rows-into-one-row-separated-by-commas/m-p/1634967#M47306</guid>
      <dc:creator>vaisgaard</dc:creator>
      <dc:date>2019-10-14T14:06:17Z</dc:date>
    </item>
    <item>
      <title>Re: Combining multiple rows into one row separated by commas</title>
      <link>https://community.qlik.com/t5/App-Development/Combining-multiple-rows-into-one-row-separated-by-commas/m-p/1634974#M47307</link>
      <description>&lt;P&gt;load&amp;nbsp;&lt;/P&gt;&lt;P&gt;concat(Cause,', ') as Causecombine&lt;/P&gt;&lt;P&gt;resident yourdata;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Mon, 14 Oct 2019 14:12:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Combining-multiple-rows-into-one-row-separated-by-commas/m-p/1634974#M47307</guid>
      <dc:creator>martinpohl</dc:creator>
      <dc:date>2019-10-14T14:12:29Z</dc:date>
    </item>
    <item>
      <title>Re: Combining multiple rows into one row separated by commas</title>
      <link>https://community.qlik.com/t5/App-Development/Combining-multiple-rows-into-one-row-separated-by-commas/m-p/1634979#M47309</link>
      <description>&lt;P&gt;Something like this?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Test:
NOCONCATENATE
LOAD Concat(Cause, ', ', Sort) AS Causes
INLINE [
        Cause, Sort
        Missing value, 1
        Missing signature, 2
        Dataformat not correct, 3
];&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="clipboard_image_0.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/21451i40861A7BBCC2F903/image-size/large?v=v2&amp;amp;px=999" role="button" title="clipboard_image_0.png" alt="clipboard_image_0.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Oct 2019 14:18:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Combining-multiple-rows-into-one-row-separated-by-commas/m-p/1634979#M47309</guid>
      <dc:creator>JGMDataAnalysis</dc:creator>
      <dc:date>2019-10-14T14:18:00Z</dc:date>
    </item>
    <item>
      <title>Re: Combining multiple rows into one row separated by commas</title>
      <link>https://community.qlik.com/t5/App-Development/Combining-multiple-rows-into-one-row-separated-by-commas/m-p/1635272#M47331</link>
      <description>&lt;P&gt;Thank you so much Martin.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2019 09:03:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Combining-multiple-rows-into-one-row-separated-by-commas/m-p/1635272#M47331</guid>
      <dc:creator>vaisgaard</dc:creator>
      <dc:date>2019-10-15T09:03:55Z</dc:date>
    </item>
    <item>
      <title>Re: Combining multiple rows into one row separated by commas</title>
      <link>https://community.qlik.com/t5/App-Development/Combining-multiple-rows-into-one-row-separated-by-commas/m-p/1635337#M47334</link>
      <description>&lt;P&gt;Thank you for replying &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2019 11:13:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Combining-multiple-rows-into-one-row-separated-by-commas/m-p/1635337#M47334</guid>
      <dc:creator>vaisgaard</dc:creator>
      <dc:date>2019-10-15T11:13:57Z</dc:date>
    </item>
  </channel>
</rss>

