<?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 Filter on Concatenated results in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Filter-on-Concatenated-results/m-p/740387#M1036006</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;I have a table with concatenated results, &lt;/P&gt;&lt;P&gt;my problem begins when using&amp;nbsp; a filter, on the concatenated values,&lt;/P&gt;&lt;P&gt;the output i would expect is to see all concatenations that contains the chosen value from the filter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example of the problem:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.qlik.com/legacyfs/online/74670_pastedImage_2.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;as you can see in the picture above, the concatenated column is partially,&lt;/P&gt;&lt;P&gt;in this example, the correct answer is to show all of the upgrade names for this specific ad&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;P&gt;nir&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Jan 2015 13:34:27 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-01-06T13:34:27Z</dc:date>
    <item>
      <title>Filter on Concatenated results</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-on-Concatenated-results/m-p/740387#M1036006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;I have a table with concatenated results, &lt;/P&gt;&lt;P&gt;my problem begins when using&amp;nbsp; a filter, on the concatenated values,&lt;/P&gt;&lt;P&gt;the output i would expect is to see all concatenations that contains the chosen value from the filter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example of the problem:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.qlik.com/legacyfs/online/74670_pastedImage_2.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;as you can see in the picture above, the concatenated column is partially,&lt;/P&gt;&lt;P&gt;in this example, the correct answer is to show all of the upgrade names for this specific ad&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;P&gt;nir&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2015 13:34:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-on-Concatenated-results/m-p/740387#M1036006</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-01-06T13:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: Filter on Concatenated results</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-on-Concatenated-results/m-p/740388#M1036007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi nir&lt;/P&gt;&lt;P&gt;I got the solution&lt;/P&gt;&lt;P&gt;try the below code&lt;/P&gt;&lt;P&gt;Test:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Ad id, UpgradeName&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1, Basic&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1, SCO Boost&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1, industry Boost&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2, test&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2, test1&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AD_ID:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Distinct&lt;/P&gt;&lt;P&gt;[Ad id] as Distinct_AD&lt;/P&gt;&lt;P&gt;Resident&lt;/P&gt;&lt;P&gt;Test;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for i= 1 to NoOfRows('AD_ID')&lt;/P&gt;&lt;P&gt;&amp;nbsp; let where_Val=FieldValue('Distinct_AD',$(i));&lt;/P&gt;&lt;P&gt;&amp;nbsp; Test2:&lt;/P&gt;&lt;P&gt;&amp;nbsp; NoConcatenate&lt;/P&gt;&lt;P&gt;&amp;nbsp; LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; [Ad id],UpgradeName as UpgradeName_New&amp;nbsp; Resident Test Where [Ad id]=$(where_Val);&lt;/P&gt;&lt;P&gt;&amp;nbsp; for j= 1 to NoOfRows('Test2')&lt;/P&gt;&lt;P&gt;&amp;nbsp; if $(j)=1 then&lt;/P&gt;&lt;P&gt;&amp;nbsp; let concatinated=FieldValue('UpgradeName_New',$(j));&lt;/P&gt;&lt;P&gt;&amp;nbsp; ELSE&lt;/P&gt;&lt;P&gt;&amp;nbsp; let concatinated = '$(concatinated)' &amp;amp; ',' &amp;amp; FieldValue('UpgradeName_New',$(j));&lt;/P&gt;&lt;P&gt;&amp;nbsp; end If&lt;/P&gt;&lt;P&gt;&amp;nbsp; next&lt;/P&gt;&lt;P&gt;&amp;nbsp; DROP Table Test2;&lt;/P&gt;&lt;P&gt;&amp;nbsp; if($(i)=1) then&lt;/P&gt;&lt;P&gt;&amp;nbsp; Final:&lt;/P&gt;&lt;P&gt;&amp;nbsp; LOAD Distinct&lt;/P&gt;&lt;P&gt;&amp;nbsp; '$(where_Val)' as AD_ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp; '$(concatinated)' as Upgrade_Name&lt;/P&gt;&lt;P&gt;&amp;nbsp; Resident&lt;/P&gt;&lt;P&gt;&amp;nbsp; Test;&lt;/P&gt;&lt;P&gt;&amp;nbsp; else&lt;/P&gt;&lt;P&gt;&amp;nbsp; LOAD Distinct&lt;/P&gt;&lt;P&gt;&amp;nbsp; '$(where_Val)' as AD_ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp; '$(concatinated)' as Upgrade_Name&lt;/P&gt;&lt;P&gt;&amp;nbsp; Resident&lt;/P&gt;&lt;P&gt;&amp;nbsp; Test;&lt;/P&gt;&lt;P&gt;&amp;nbsp; end if&lt;/P&gt;&lt;P&gt;next&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Harsha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2015 14:17:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-on-Concatenated-results/m-p/740388#M1036007</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-01-06T14:17:00Z</dc:date>
    </item>
    <item>
      <title>Re: Filter on Concatenated results</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-on-Concatenated-results/m-p/740389#M1036008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your reply,&lt;/P&gt;&lt;P&gt;I am trying to understand your suggested solution,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as i understand (and please correct me if i am wrong),&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;the solution is to build a concatenated table based on column "UpgradeName",&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;but how the user can select a specific upgrades?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;for example, a user would like to choose "Basic" upgrade,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;it should present:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;jobid, upgarde name&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;1, Basic &amp;amp; SCO Boost &amp;amp; Industry Boost&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Mar 2015 13:51:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-on-Concatenated-results/m-p/740389#M1036008</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-01T13:51:29Z</dc:date>
    </item>
  </channel>
</rss>

