<?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: Concat with exclude current row value in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Concat-with-exclude-current-row-value/m-p/1605750#M44853</link>
    <description>&lt;P&gt;Hello ,&lt;/P&gt;&lt;P&gt;Thank you for the response. However I would like to have it in a expression in a table in qliksense. Also the fact is there will be multiple shipments for each product. Like one product can have 11 shipments too..&lt;/P&gt;&lt;P&gt;please suggest an expression for this.&lt;/P&gt;</description>
    <pubDate>Wed, 24 Jul 2019 15:15:25 GMT</pubDate>
    <dc:creator>pradeep92</dc:creator>
    <dc:date>2019-07-24T15:15:25Z</dc:date>
    <item>
      <title>Concat with exclude current row value</title>
      <link>https://community.qlik.com/t5/App-Development/Concat-with-exclude-current-row-value/m-p/1605702#M44848</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Please find the below scenario and provide a solution&amp;nbsp;&lt;/P&gt;&lt;P&gt;Consider a straight table in a sheet where I have ShipmentId , productId and &amp;nbsp;new field with desired output called sub shipment&lt;/P&gt;&lt;P&gt;ShipmentId, ProductId, Subshipment&lt;/P&gt;&lt;P&gt;100 ,1000A, 101;102&amp;nbsp;&lt;/P&gt;&lt;P&gt;101, 1000A, 100;102&lt;/P&gt;&lt;P&gt;102,1000A, 100;101&lt;/P&gt;&lt;P&gt;103,1000B,104&lt;/P&gt;&lt;P&gt;104,1000B,103&lt;/P&gt;&lt;P&gt;105,1000C, -&lt;/P&gt;&lt;P&gt;So what should be the expression for subshipment ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kindly advise&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 05:10:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Concat-with-exclude-current-row-value/m-p/1605702#M44848</guid>
      <dc:creator>pradeep92</dc:creator>
      <dc:date>2024-11-16T05:10:49Z</dc:date>
    </item>
    <item>
      <title>Re: Concat with exclude current row value</title>
      <link>https://community.qlik.com/t5/App-Development/Concat-with-exclude-current-row-value/m-p/1605713#M44849</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;what is the logic for 3rd column(subshipment) ?&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jul 2019 14:21:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Concat-with-exclude-current-row-value/m-p/1605713#M44849</guid>
      <dc:creator>mahaveerbiraj</dc:creator>
      <dc:date>2019-07-24T14:21:35Z</dc:date>
    </item>
    <item>
      <title>Re: Concat with exclude current row value</title>
      <link>https://community.qlik.com/t5/App-Development/Concat-with-exclude-current-row-value/m-p/1605720#M44850</link>
      <description>&lt;P&gt;Hi , Thanks for the response.&lt;/P&gt;&lt;P&gt;so Based on each of the productId shipment Id hast to be concatenated in each row and the shipment id in that particular row has to be omitted&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jul 2019 14:29:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Concat-with-exclude-current-row-value/m-p/1605720#M44850</guid>
      <dc:creator>pradeep92</dc:creator>
      <dc:date>2019-07-24T14:29:10Z</dc:date>
    </item>
    <item>
      <title>Re: Concat with exclude current row value</title>
      <link>https://community.qlik.com/t5/App-Development/Concat-with-exclude-current-row-value/m-p/1605745#M44851</link>
      <description>&lt;P&gt;Hi ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please find below logic for your requirement.&lt;/P&gt;&lt;P&gt;table:&lt;BR /&gt;load * Inline [&lt;/P&gt;&lt;P&gt;ShipmentId, ProductId&lt;/P&gt;&lt;P&gt;100 ,1000A&lt;/P&gt;&lt;P&gt;101, 1000A&lt;/P&gt;&lt;P&gt;102,1000A&lt;/P&gt;&lt;P&gt;103,1000B&lt;/P&gt;&lt;P&gt;104,1000B&lt;/P&gt;&lt;P&gt;105,1000C&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;//table2:&lt;BR /&gt;left join(table)&lt;BR /&gt;load&lt;BR /&gt;ProductId,&lt;BR /&gt;concat(ShipmentId,';') as Subshipment&lt;BR /&gt;Resident table Group by ProductId ;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;BR /&gt;table2:&lt;BR /&gt;load&lt;BR /&gt;ShipmentId,&lt;BR /&gt;ProductId,&lt;/P&gt;&lt;P&gt;replace(Replace( Replace( Subshipment,';'&amp;amp;ShipmentId,'' ),ShipmentId&amp;amp;';',''),ShipmentId,'' )as Subshipment&lt;/P&gt;&lt;P&gt;Resident table;&lt;/P&gt;&lt;P&gt;Drop Table table;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jul 2019 15:10:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Concat-with-exclude-current-row-value/m-p/1605745#M44851</guid>
      <dc:creator>mahaveerbiraj</dc:creator>
      <dc:date>2019-07-24T15:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: Concat with exclude current row value</title>
      <link>https://community.qlik.com/t5/App-Development/Concat-with-exclude-current-row-value/m-p/1605750#M44853</link>
      <description>&lt;P&gt;Hello ,&lt;/P&gt;&lt;P&gt;Thank you for the response. However I would like to have it in a expression in a table in qliksense. Also the fact is there will be multiple shipments for each product. Like one product can have 11 shipments too..&lt;/P&gt;&lt;P&gt;please suggest an expression for this.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jul 2019 15:15:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Concat-with-exclude-current-row-value/m-p/1605750#M44853</guid>
      <dc:creator>pradeep92</dc:creator>
      <dc:date>2019-07-24T15:15:25Z</dc:date>
    </item>
    <item>
      <title>Re: Concat with exclude current row value</title>
      <link>https://community.qlik.com/t5/App-Development/Concat-with-exclude-current-row-value/m-p/1605948#M44864</link>
      <description>&lt;P&gt;Hi Pradeep,&lt;/P&gt;&lt;P&gt;I would suggest use most of the calculation or transform use in backend (script ) , and above example will handle your all requirement even if you have more than 11&amp;nbsp;&lt;SPAN&gt;Subshipment id's , since you want to you want to handle it on qliksense table (chart) here i have mentioned below expression.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;=replace(Replace(Replace( Subshipment,';'&amp;amp;Aggr( nodistinct Concat(ShipmentId,';'),ProductId ),''),Aggr( nodistinct Concat(ShipmentId,';'),ProductId )&amp;amp;';',''),Aggr(nodistinct Concat(ShipmentId,';'),ProductId ),'')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;thanku&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jul 2019 06:42:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Concat-with-exclude-current-row-value/m-p/1605948#M44864</guid>
      <dc:creator>mahaveerbiraj</dc:creator>
      <dc:date>2019-07-25T06:42:24Z</dc:date>
    </item>
    <item>
      <title>Re: Concat with exclude current row value</title>
      <link>https://community.qlik.com/t5/App-Development/Concat-with-exclude-current-row-value/m-p/1606046#M44868</link>
      <description>&lt;P&gt;Thank you for your valuable suggestion. Means a lot!&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jul 2019 11:09:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Concat-with-exclude-current-row-value/m-p/1606046#M44868</guid>
      <dc:creator>pradeep92</dc:creator>
      <dc:date>2019-07-25T11:09:47Z</dc:date>
    </item>
  </channel>
</rss>

