<?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: Whether Permutations and Combinations are possible.. in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Whether-Permutations-and-Combinations-are-possible/m-p/1115318#M368274</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not quite sure what you finally want to achieve, but may a Concat() aggregation is the better approach here:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T1:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;Category, vendor, price&lt;/P&gt;&lt;P&gt;A , Jack , 1000&lt;/P&gt;&lt;P&gt;A , Jeff , 200&lt;/P&gt;&lt;P&gt;A , Peter , 202&lt;/P&gt;&lt;P&gt;A , Kate , 2333&lt;/P&gt;&lt;P&gt;A , Joan , 2331&lt;/P&gt;&lt;P&gt;A , John , 3000&lt;/P&gt;&lt;P&gt;B , Jack , 2000&lt;/P&gt;&lt;P&gt;B , Jeff , 3000&lt;/P&gt;&lt;P&gt;B , Alex , 3900&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD Category,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Concat(DISTINCT vendor,'|') as vendor_combine&lt;/P&gt;&lt;P&gt;RESIDENT T1&lt;/P&gt;&lt;P&gt;GROUP BY Category;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 May 2017 19:01:17 GMT</pubDate>
    <dc:creator>swuehl</dc:creator>
    <dc:date>2017-05-25T19:01:17Z</dc:date>
    <item>
      <title>Whether Permutations and Combinations are possible..</title>
      <link>https://community.qlik.com/t5/QlikView/Whether-Permutations-and-Combinations-are-possible/m-p/1115311#M368267</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;I have attached one application in which i have given few types which is a combination of two alphabets like AB, AC, AD and so on.&lt;/P&gt;&lt;P&gt;whether it is possible where i can generate combinations which are not yet used from alphabets A...to.. Z and should be in capital letters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please assist by way i can get the desired out put.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&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;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Jun 2016 13:53:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Whether-Permutations-and-Combinations-are-possible/m-p/1115311#M368267</guid>
      <dc:creator>pra_kale</dc:creator>
      <dc:date>2016-06-25T13:53:53Z</dc:date>
    </item>
    <item>
      <title>Re: Whether Permutations and Combinations are possible..</title>
      <link>https://community.qlik.com/t5/QlikView/Whether-Permutations-and-Combinations-are-possible/m-p/1115312#M368268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD CHR(ORD('A')+recno()-1)&amp;amp;CHR(ORD('A')+Iterno()-1) as NewType&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;AutoGenerate 26&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;While Iterno() &amp;lt;=26;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An alternate approach would be to use cartesian product, a JOIN of two fields that contain all values, but are named differently. Then you would need to use a subsequent resident load to concatenate the two fields.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Jun 2016 14:00:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Whether-Permutations-and-Combinations-are-possible/m-p/1115312#M368268</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-06-25T14:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: Whether Permutations and Combinations are possible..</title>
      <link>https://community.qlik.com/t5/QlikView/Whether-Permutations-and-Combinations-are-possible/m-p/1115313#M368269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you need to check for already loaded field values:&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;EM&gt;Permutations:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD Type&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FROM&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;[Permutations.xlsx]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;(ooxml, embedded labels, table is Sheet1);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD Type&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;WHERE NOT EXISTS(Type);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD CHR(ORD('A')+recno()-1)&amp;amp;CHR(ORD('A')+Iterno()-1) as Type&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;AutoGenerate 26&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;While Iterno() &amp;lt;=26;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Jun 2016 14:04:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Whether-Permutations-and-Combinations-are-possible/m-p/1115313#M368269</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-06-25T14:04:41Z</dc:date>
    </item>
    <item>
      <title>Re: Whether Permutations and Combinations are possible..</title>
      <link>https://community.qlik.com/t5/QlikView/Whether-Permutations-and-Combinations-are-possible/m-p/1115314#M368270</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 Swuehl for your Help...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried with the codes which you have given&amp;nbsp; it is generating the combinations as per the requirement but only thing is the combinations which are already used should be get excluded, whether it possible.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Jun 2016 14:52:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Whether-Permutations-and-Combinations-are-possible/m-p/1115314#M368270</guid>
      <dc:creator>pra_kale</dc:creator>
      <dc:date>2016-06-25T14:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: Whether Permutations and Combinations are possible..</title>
      <link>https://community.qlik.com/t5/QlikView/Whether-Permutations-and-Combinations-are-possible/m-p/1115315#M368271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Shouldn't the second code sample do exactely this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or maybe you want to drop the combinations loaded from the input file:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Exclude:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD Type&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FROM&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;[Permutations.xlsx]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;(ooxml, embedded labels, table is Sheet1);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Permutations:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;NOConcatenate&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD Type&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;WHERE NOT EXISTS(Type);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD CHR(ORD('A')+recno()-1)&amp;amp;CHR(ORD('A')+Iterno()-1) as Type&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;AutoGenerate 26&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;While Iterno() &amp;lt;=26;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;DROP TABLE Exclude;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Jun 2016 15:03:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Whether-Permutations-and-Combinations-are-possible/m-p/1115315#M368271</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-06-25T15:03:48Z</dc:date>
    </item>
    <item>
      <title>Re: Whether Permutations and Combinations are possible..</title>
      <link>https://community.qlik.com/t5/QlikView/Whether-Permutations-and-Combinations-are-possible/m-p/1115316#M368272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Too Good...Swuehl..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That's exactly what I want...&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks once Again Swuehl.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Jun 2016 15:12:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Whether-Permutations-and-Combinations-are-possible/m-p/1115316#M368272</guid>
      <dc:creator>pra_kale</dc:creator>
      <dc:date>2016-06-25T15:12:43Z</dc:date>
    </item>
    <item>
      <title>Re: Whether Permutations and Combinations are possible..</title>
      <link>https://community.qlik.com/t5/QlikView/Whether-Permutations-and-Combinations-are-possible/m-p/1115317#M368273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Hi Swuehl,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;I'm trying below code to make the field &lt;SPAN style="color: #800000; font-size: 8pt;"&gt;vendor_combine&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I need it as a combination of "vendor" and does not regard the order of vendors.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;T1:&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&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; Category, vendor, price&lt;BR /&gt; A , Jack , 1000&lt;BR /&gt; A , Jeff , 200&lt;BR /&gt; A , Peter , 202&lt;BR /&gt; A , Kate , 2333&lt;BR /&gt; A , Joan , 2331&lt;BR /&gt; A , John , 3000&lt;BR /&gt; B , Jack , 2000&lt;BR /&gt; B , Jeff , 3000&lt;BR /&gt; B , Alex , 3900&lt;BR /&gt; ]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Join&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Category&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;vendor&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;vendor1&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Resident&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; T1&lt;BR /&gt; ;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Join&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Category&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;vendor&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;vendor2&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Resident&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; T1&lt;BR /&gt; ;&lt;BR /&gt;&lt;BR /&gt; T2:&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;NoConcatenate&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; *,&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;vendor&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;amp;'|'&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;vendor1&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;amp;'|'&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;vendor2&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;vendor_combine&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Resident&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; T1&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Where&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;vendor&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;lt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;vendor1&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;and&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;vendor1&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;lt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;vendor2&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;and&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;vendor&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;lt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;vendor2&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;But in this case, Jack|Jeff|Joan, Jeff|Jack|Joan, Joan|Jeff|Jack,.... are regarded as 6 different values, but since order doesn't matter here, I want to regard these as only one case. Can you please help?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;BR, Peter&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2017 07:48:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Whether-Permutations-and-Combinations-are-possible/m-p/1115317#M368273</guid>
      <dc:creator />
      <dc:date>2017-05-25T07:48:03Z</dc:date>
    </item>
    <item>
      <title>Re: Whether Permutations and Combinations are possible..</title>
      <link>https://community.qlik.com/t5/QlikView/Whether-Permutations-and-Combinations-are-possible/m-p/1115318#M368274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not quite sure what you finally want to achieve, but may a Concat() aggregation is the better approach here:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T1:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;Category, vendor, price&lt;/P&gt;&lt;P&gt;A , Jack , 1000&lt;/P&gt;&lt;P&gt;A , Jeff , 200&lt;/P&gt;&lt;P&gt;A , Peter , 202&lt;/P&gt;&lt;P&gt;A , Kate , 2333&lt;/P&gt;&lt;P&gt;A , Joan , 2331&lt;/P&gt;&lt;P&gt;A , John , 3000&lt;/P&gt;&lt;P&gt;B , Jack , 2000&lt;/P&gt;&lt;P&gt;B , Jeff , 3000&lt;/P&gt;&lt;P&gt;B , Alex , 3900&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD Category,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Concat(DISTINCT vendor,'|') as vendor_combine&lt;/P&gt;&lt;P&gt;RESIDENT T1&lt;/P&gt;&lt;P&gt;GROUP BY Category;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2017 19:01:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Whether-Permutations-and-Combinations-are-possible/m-p/1115318#M368274</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2017-05-25T19:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: Whether Permutations and Combinations are possible..</title>
      <link>https://community.qlik.com/t5/QlikView/Whether-Permutations-and-Combinations-are-possible/m-p/1115319#M368275</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;Sorry for not making this clear.&lt;/P&gt;&lt;P&gt;Actually I want to have all possible 3-vendor-combinations on Category level, the wanted result is:&lt;/P&gt;&lt;P&gt;Category combo_3_vendor indicator&lt;/P&gt;&lt;P&gt;A Jack|Jeff|Joan 10|30|8&lt;/P&gt;&lt;P&gt;A Jack|Jeff|John 12|41|9&lt;/P&gt;&lt;P&gt;A Jack|Jeff|Kate 8|21|7&lt;/P&gt;&lt;P&gt;A Jack|Jeff|Peter 6|14|6&lt;/P&gt;&lt;P&gt;A Jack|Joan|John 30|62|12&lt;/P&gt;&lt;P&gt;A Jack|Kate|Joan 20|42|10&lt;/P&gt;&lt;P&gt;A Jack|Kate|John 24|53|11&lt;/P&gt;&lt;P&gt;A Jack|Peter|Joan 15|35|9&lt;/P&gt;&lt;P&gt;A Jack|Peter|John 18|46|10&lt;/P&gt;&lt;P&gt;A Jack|Peter|Kate 12|26|8&lt;/P&gt;&lt;P&gt;A Jeff|Joan|John 60|65|13&lt;/P&gt;&lt;P&gt;A Jeff|Kate|Joan 40|45|11&lt;/P&gt;&lt;P&gt;A Jeff|Kate|John 48|56|12&lt;/P&gt;&lt;P&gt;A Jeff|Peter|Joan 30|38|10&lt;/P&gt;&lt;P&gt;A Jeff|Peter|John 36|49|11&lt;/P&gt;&lt;P&gt;A Jeff|Peter|Kate 24|29|9&lt;/P&gt;&lt;P&gt;A Kate|Joan|John 120|77|15&lt;/P&gt;&lt;P&gt;A Peter|Joan|John 90|70|14&lt;/P&gt;&lt;P&gt;A Peter|Kate|Joan 60|50|12&lt;/P&gt;&lt;P&gt;A Peter|Kate|John 72|61|13&lt;/P&gt;&lt;P&gt;B Jack|Jeff|Alex 6|14|6&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please have a look at this: &lt;A href="https://community.qlik.com/thread/261640"&gt;Calculate min value accross a random range&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I think I have achieved it but with too much code... will be interesting to have a leaner approach.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR, Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 May 2017 07:50:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Whether-Permutations-and-Combinations-are-possible/m-p/1115319#M368275</guid>
      <dc:creator />
      <dc:date>2017-05-26T07:50:09Z</dc:date>
    </item>
  </channel>
</rss>

