<?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 Dynamic word combination in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Dynamic-word-combination/m-p/99313#M15862</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a list of words like this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a,e,i,o,u,1,2,3,4,5&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and I'd like to have a new word of 5 character lenght with all the possible combinations dynamically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Id,NewWord&lt;/P&gt;&lt;P&gt;1, aaaaa&lt;/P&gt;&lt;P&gt;2,aaaae&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anybody here knows how to do that avoiding to do it with 5 nested for next loops? The point here is my issue is much complicated than this, and maybe there's a string function that will do what I want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Marcel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 22 Sep 2018 10:18:08 GMT</pubDate>
    <dc:creator>marcel_olmo</dc:creator>
    <dc:date>2018-09-22T10:18:08Z</dc:date>
    <item>
      <title>Dynamic word combination</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-word-combination/m-p/99313#M15862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a list of words like this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a,e,i,o,u,1,2,3,4,5&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and I'd like to have a new word of 5 character lenght with all the possible combinations dynamically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Id,NewWord&lt;/P&gt;&lt;P&gt;1, aaaaa&lt;/P&gt;&lt;P&gt;2,aaaae&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anybody here knows how to do that avoiding to do it with 5 nested for next loops? The point here is my issue is much complicated than this, and maybe there's a string function that will do what I want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Marcel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Sep 2018 10:18:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-word-combination/m-p/99313#M15862</guid>
      <dc:creator>marcel_olmo</dc:creator>
      <dc:date>2018-09-22T10:18:08Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic word combination</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-word-combination/m-p/99314#M15863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe using an outer JOIN to create all combinations:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Words:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;Word&lt;/P&gt;&lt;P&gt;a,&lt;/P&gt;&lt;P&gt;e,&lt;/P&gt;&lt;P&gt;i,&lt;/P&gt;&lt;P&gt;o,&lt;/P&gt;&lt;P&gt;u,&lt;/P&gt;&lt;P&gt;1,&lt;/P&gt;&lt;P&gt;2,&lt;/P&gt;&lt;P&gt;3,&lt;/P&gt;&lt;P&gt;4,&lt;/P&gt;&lt;P&gt;5&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For i = 1 to 5&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i = 1 THEN&lt;/P&gt;&lt;P&gt;Prefix = 'Combinations:'&lt;/P&gt;&lt;P&gt;ELSE &lt;/P&gt;&lt;P&gt;Prefix = 'Join (Combinations)';&lt;/P&gt;&lt;P&gt;endif&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$(Prefix)&lt;/P&gt;&lt;P&gt;LOAD Word as Word$(i) Resident Words;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Next i&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If needed, you can concatenate each WordX to create a single field for the combinations in another step.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Sep 2018 11:00:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-word-combination/m-p/99314#M15863</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2018-09-22T11:00:12Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic word combination</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-word-combination/m-p/99315#M15864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Stephan, it's what I need. I'll concatenate each wordX in a resident load after it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards, Marcel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Sep 2018 11:12:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-word-combination/m-p/99315#M15864</guid>
      <dc:creator>marcel_olmo</dc:creator>
      <dc:date>2018-09-22T11:12:08Z</dc:date>
    </item>
  </channel>
</rss>

