<?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: Concatenate, or Join, or ? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Concatenate-or-Join-or/m-p/628053#M679443</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can try using a generic load like below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_14011073177882125" jivemacro_uid="_14011073177882125" modifiedtitle="true"&gt;
&lt;P&gt;T1:&lt;/P&gt;
&lt;P&gt;load * inline [&lt;/P&gt;
&lt;P&gt;ID, Desc&lt;/P&gt;
&lt;P&gt;1, Case1&lt;/P&gt;
&lt;P&gt;2, Case2&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;T2:&lt;/P&gt;
&lt;P&gt;CrossTable(Key,Value,2)&lt;/P&gt;
&lt;P&gt;load RowNo() as RowId,* Inline [&lt;/P&gt;
&lt;P&gt;ID, INFO1, INFO2, INFO3&lt;/P&gt;
&lt;P&gt;1, text1,text2,text3&lt;/P&gt;
&lt;P&gt;1,text11,text22,text33&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;T3:&lt;/P&gt;
&lt;P&gt;Generic&lt;/P&gt;
&lt;P&gt;load ID, Key &amp;amp; '_' &amp;amp; RowId as F, Value&lt;/P&gt;
&lt;P&gt;Resident T2;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;drop table T2;&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 May 2014 12:30:42 GMT</pubDate>
    <dc:creator>Gysbert_Wassenaar</dc:creator>
    <dc:date>2014-05-26T12:30:42Z</dc:date>
    <item>
      <title>Concatenate, or Join, or ?</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenate-or-Join-or/m-p/628052#M679442</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cracking my head on the following...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have two tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1 has every row only one case.&lt;/P&gt;&lt;P&gt;Table2 can have multiple row from the same case (max. 3 times)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="qv1.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/59547_qv1.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to merge both tables, but with ALL the collums, and additional colloms (form the other table, but with prefixes (max till 3) , like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="qv2.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/59548_qv2.png" style="max-width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;Starting to get desired data using IF statements, but then the load starting to get VERY long... already with my test data, this wil lbe unworkable with the real data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you understand my point, and even more hope that you have the solution (:&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2014 12:15:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenate-or-Join-or/m-p/628052#M679442</guid>
      <dc:creator />
      <dc:date>2014-05-26T12:15:15Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate, or Join, or ?</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenate-or-Join-or/m-p/628053#M679443</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can try using a generic load like below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_14011073177882125" jivemacro_uid="_14011073177882125" modifiedtitle="true"&gt;
&lt;P&gt;T1:&lt;/P&gt;
&lt;P&gt;load * inline [&lt;/P&gt;
&lt;P&gt;ID, Desc&lt;/P&gt;
&lt;P&gt;1, Case1&lt;/P&gt;
&lt;P&gt;2, Case2&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;T2:&lt;/P&gt;
&lt;P&gt;CrossTable(Key,Value,2)&lt;/P&gt;
&lt;P&gt;load RowNo() as RowId,* Inline [&lt;/P&gt;
&lt;P&gt;ID, INFO1, INFO2, INFO3&lt;/P&gt;
&lt;P&gt;1, text1,text2,text3&lt;/P&gt;
&lt;P&gt;1,text11,text22,text33&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;T3:&lt;/P&gt;
&lt;P&gt;Generic&lt;/P&gt;
&lt;P&gt;load ID, Key &amp;amp; '_' &amp;amp; RowId as F, Value&lt;/P&gt;
&lt;P&gt;Resident T2;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;drop table T2;&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2014 12:30:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenate-or-Join-or/m-p/628053#M679443</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2014-05-26T12:30:42Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate, or Join, or ?</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenate-or-Join-or/m-p/628054#M679444</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gysbert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looks like I am getting somewhere &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/devil.png" /&gt; your code gives me the desired result...&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/cool.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now translating to my own table structure (above was an example ofcourse)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many many thanks! &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 May 2014 08:46:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenate-or-Join-or/m-p/628054#M679444</guid>
      <dc:creator />
      <dc:date>2014-05-27T08:46:32Z</dc:date>
    </item>
  </channel>
</rss>

