<?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: Join/merge table with same fields but different data in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Join-merge-table-with-same-fields-but-different-data/m-p/1583452#M738822</link>
    <description>to change de ' - ' per 'N' you can do that&lt;BR /&gt;noconcatenate&lt;BR /&gt;TEMP:&lt;BR /&gt;LOAD&lt;BR /&gt;if(isnull(REL_ALG_NR_EXTERN),N, REL_ALG_NR_EXTERN) as REL_ALG_NR_EXTERN,&lt;BR /&gt;REL_ALG_KD_SRT_REL,&lt;BR /&gt;REL_ALG_EMAIL,&lt;BR /&gt;MAILIND,&lt;BR /&gt;&amp;nbsp;REL_PART_NM_ROEP,&lt;BR /&gt;&amp;nbsp;REL_ALG_VOORLT,&lt;BR /&gt;&amp;nbsp;REL_ALG_VOORVG,&lt;BR /&gt;&amp;nbsp;REL_ALG_NM_RELATIE,&lt;BR /&gt;REL_ALG_KD_TITULT,&lt;BR /&gt;&amp;nbsp;if(isnull(ROKEN),N,ROKEN) as ROKEN&lt;BR /&gt;&amp;nbsp;if(isnull(%AO),N,%AO) as %AO&lt;BR /&gt;&amp;nbsp;REL_PART_GESL_REL,&lt;BR /&gt;REL_PART_DT_GEB,&lt;BR /&gt;&amp;nbsp;PRD61A AS BEROEP,&lt;BR /&gt;REL_PART_DT_OVERL&lt;BR /&gt;REL_ALG_NM_RELATIE,&lt;BR /&gt;REL_ALG_KD_TITULT&lt;BR /&gt;Resident ReloadMain;&lt;BR /&gt;</description>
    <pubDate>Wed, 22 May 2019 14:44:54 GMT</pubDate>
    <dc:creator>mrtinsjoao</dc:creator>
    <dc:date>2019-05-22T14:44:54Z</dc:date>
    <item>
      <title>Join/merge table with same fields but different data</title>
      <link>https://community.qlik.com/t5/QlikView/Join-merge-table-with-same-fields-but-different-data/m-p/1583152#M738815</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm trying to merge 3 tables.&amp;nbsp;&lt;/P&gt;&lt;P&gt;With a left join statement the 'Relation' and 'Business' tables are merged. But I can't get the 'Customers' table merged as well.&lt;/P&gt;&lt;P&gt;After the join of the 'Business' table i have now 3 combined fields : REL_ALG_NR_EXTERN, REL_ALG_KD_TITULT and REL_ALG_NM_RELATIE.&amp;nbsp;&lt;/P&gt;&lt;P&gt;A join with the 'Customers' table now causes extra records with '-' in the fields as the 3 field key makes them all unique.&lt;/P&gt;&lt;P&gt;The unique key should only be the REL_ALG_NR_EXTERN field.&lt;/P&gt;&lt;P&gt;The reason that I want to merge the tables is that I want to replace '-' values with "N" in fields like 'Roken' and '%AO'.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;//**************************************************************&lt;BR /&gt;//Relation&lt;BR /&gt;Relatie:&lt;BR /&gt;LOAD PRO2PA AS REL_ALG_NR_EXTERN,&lt;BR /&gt;IF(PRO2XBA = 'N', 'P', 'Z') AS REL_ALG_KD_SRT_REL,&lt;BR /&gt;PRO2XCA AS REL_ALG_EMAIL,&lt;BR /&gt;PRO3ETA AS MAILIND&lt;BR /&gt;&lt;BR /&gt;FROM&lt;BR /&gt;[V:\GL_PROSRLP.CSV]&lt;BR /&gt;(txt, codepage is 1252, embedded labels, delimiter is ';', msq);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;//**************************************************************&lt;BR /&gt;//Business&amp;nbsp;&lt;/P&gt;&lt;P&gt;Left join(Relatie)&lt;BR /&gt;LOAD PRO2PA AS REL_ALG_NR_EXTERN,&lt;BR /&gt;PRO2XAA AS REL_ALG_NM_RELATIE,&lt;BR /&gt;50 AS REL_ALG_KD_TITULT&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;FROM&lt;BR /&gt;[V:\\GL_PROSRPP.CSV]&lt;BR /&gt;(txt, codepage is 1252, embedded labels, delimiter is ';', msq) ;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;//**************************************************************&lt;BR /&gt;//Customers&lt;BR /&gt;&lt;BR /&gt;NP:&lt;BR /&gt;LOAD PRO2PA AS REL_ALG_NR_EXTERN,&lt;BR /&gt;&amp;nbsp;PRO94A AS REL_PART_NM_ROEP,&lt;BR /&gt;&amp;nbsp;PRO8BA AS REL_ALG_VOORLT,&lt;BR /&gt;&amp;nbsp;PRO8AA AS REL_ALG_VOORVG,&lt;BR /&gt;&amp;nbsp;PRO8CA AS REL_ALG_NM_RELATIE,&lt;BR /&gt;&amp;nbsp;IF(PRO3IA = 'M', 1, 2) AS REL_ALG_KD_TITULT,&lt;BR /&gt;&amp;nbsp;PRO2Y3A AS ROKEN,&lt;BR /&gt;&amp;nbsp;PRO2Y4A AS %AO,&lt;BR /&gt;&amp;nbsp;PRO3IA AS REL_PART_GESL_REL,&lt;BR /&gt;&amp;nbsp;IF(PRO83A = '0001-01-01', '', DATE(PRO83A)) AS REL_PART_DT_GEB,&lt;BR /&gt;&amp;nbsp;PRD61A AS BEROEP,&lt;BR /&gt;&amp;nbsp;IF(PRO2X3A = '0001-01-01', '', DATE(PRO2X3A)) AS REL_PART_DT_OVERL&lt;BR /&gt;&lt;BR /&gt;FROM&lt;BR /&gt;[V:\\GL_PROSNPP.CSV]&lt;BR /&gt;(txt, codepage is 1252, embedded labels, delimiter is ';', msq);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions?&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 20:49:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-merge-table-with-same-fields-but-different-data/m-p/1583152#M738815</guid>
      <dc:creator>Timba69</dc:creator>
      <dc:date>2024-11-16T20:49:07Z</dc:date>
    </item>
    <item>
      <title>Re: Join/merge table with same fields but different data</title>
      <link>https://community.qlik.com/t5/QlikView/Join-merge-table-with-same-fields-but-different-data/m-p/1583329#M738816</link>
      <description>&lt;P&gt;You can concatenate these tables or join in one more and reproces the tables to do the job&lt;/P&gt;&lt;P&gt;run this&lt;/P&gt;&lt;P&gt;NP:&lt;BR /&gt;LOAD PRO2PA AS REL_ALG_NR_EXTERN,&lt;BR /&gt;&amp;nbsp;PRO94A AS REL_PART_NM_ROEP,&lt;BR /&gt;&amp;nbsp;PRO8BA AS REL_ALG_VOORLT,&lt;BR /&gt;&amp;nbsp;PRO8AA AS REL_ALG_VOORVG,&lt;BR /&gt;&amp;nbsp;PRO8CA AS REL_ALG_NM_RELATIE,&lt;BR /&gt;&amp;nbsp;IF(PRO3IA = 'M', 1, 2) AS REL_ALG_KD_TITULT,&lt;BR /&gt;&amp;nbsp;PRO2Y3A AS ROKEN,&lt;BR /&gt;&amp;nbsp;PRO2Y4A AS %AO,&lt;BR /&gt;&amp;nbsp;PRO3IA AS REL_PART_GESL_REL,&lt;BR /&gt;&amp;nbsp;IF(PRO83A = '0001-01-01', '', DATE(PRO83A)) AS REL_PART_DT_GEB,&lt;BR /&gt;&amp;nbsp;PRD61A AS BEROEP,&lt;BR /&gt;&amp;nbsp;IF(PRO2X3A = '0001-01-01', '', DATE(PRO2X3A)) AS REL_PART_DT_OVERL&lt;/P&gt;&lt;P&gt;FROM&lt;BR /&gt;[V:\\GL_PROSNPP.CSV]&lt;BR /&gt;(txt, codepage is 1252, embedded labels, delimiter is ';', msq);&lt;/P&gt;&lt;P&gt;Left join&lt;BR /&gt;LOAD PRO2PA AS REL_ALG_NR_EXTERN,&lt;BR /&gt;PRO2XAA AS REL_ALG_NM_RELATIE,&lt;BR /&gt;50 AS REL_ALG_KD_TITULT&lt;BR /&gt;FROM&lt;BR /&gt;[V:\\GL_PROSRPP.CSV]&lt;BR /&gt;(txt, codepage is 1252, embedded labels, delimiter is ';', msq) ;&lt;/P&gt;&lt;P&gt;left join&lt;BR /&gt;LOAD PRO2PA AS REL_ALG_NR_EXTERN,&lt;BR /&gt;IF(PRO2XBA = 'N', 'P', 'Z') AS REL_ALG_KD_SRT_REL,&lt;BR /&gt;PRO2XCA AS REL_ALG_EMAIL,&lt;BR /&gt;PRO3ETA AS MAILIND&lt;/P&gt;&lt;P&gt;FROM&lt;BR /&gt;[V:\GL_PROSRLP.CSV]&lt;BR /&gt;(txt, codepage is 1252, embedded labels, delimiter is ';', msq);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;now you have one table and you can reproces to remove the 'null'&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2019 12:25:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-merge-table-with-same-fields-but-different-data/m-p/1583329#M738816</guid>
      <dc:creator>mrtinsjoao</dc:creator>
      <dc:date>2019-05-22T12:25:57Z</dc:date>
    </item>
    <item>
      <title>Re: Join/merge table with same fields but different data</title>
      <link>https://community.qlik.com/t5/QlikView/Join-merge-table-with-same-fields-but-different-data/m-p/1583339#M738817</link>
      <description>&lt;P&gt;I dont think that's going to work.&lt;/P&gt;&lt;P&gt;The 'Relation' table consists of all relation records and is the main table.&lt;/P&gt;&lt;P&gt;The 'Business' and 'Customer' table are adding additional info.&amp;nbsp;&lt;/P&gt;&lt;P&gt;If i'm doing it the other way around i will be missing a lot of records?&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2019 12:40:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-merge-table-with-same-fields-but-different-data/m-p/1583339#M738817</guid>
      <dc:creator>Timba69</dc:creator>
      <dc:date>2019-05-22T12:40:57Z</dc:date>
    </item>
    <item>
      <title>Re: Join/merge table with same fields but different data</title>
      <link>https://community.qlik.com/t5/QlikView/Join-merge-table-with-same-fields-but-different-data/m-p/1583350#M738818</link>
      <description>&lt;P&gt;Use this,&lt;/P&gt;&lt;P&gt;TABLE:&lt;BR /&gt;LOAD PRO2PA AS REL_ALG_NR_EXTERN,&lt;BR /&gt;IF(PRO2XBA = 'N', 'P', 'Z') AS REL_ALG_KD_SRT_REL,&lt;BR /&gt;PRO2XCA AS REL_ALG_EMAIL,&lt;BR /&gt;PRO3ETA AS MAILIND&lt;/P&gt;&lt;P&gt;FROM&lt;BR /&gt;[V:\GL_PROSRLP.CSV]&lt;BR /&gt;(txt, codepage is 1252, embedded labels, delimiter is ';', msq);&lt;/P&gt;&lt;P&gt;left join&lt;BR /&gt;LOAD PRO2PA AS REL_ALG_NR_EXTERN,&lt;BR /&gt;&amp;nbsp;PRO94A AS REL_PART_NM_ROEP,&lt;BR /&gt;&amp;nbsp;PRO8BA AS REL_ALG_VOORLT,&lt;BR /&gt;&amp;nbsp;PRO8AA AS REL_ALG_VOORVG,&lt;BR /&gt;&amp;nbsp;PRO8CA AS REL_ALG_NM_RELATIE,&lt;BR /&gt;&amp;nbsp;IF(PRO3IA = 'M', 1, 2) AS REL_ALG_KD_TITULT,&lt;BR /&gt;&amp;nbsp;PRO2Y3A AS ROKEN,&lt;BR /&gt;&amp;nbsp;PRO2Y4A AS %AO,&lt;BR /&gt;&amp;nbsp;PRO3IA AS REL_PART_GESL_REL,&lt;BR /&gt;&amp;nbsp;IF(PRO83A = '0001-01-01', '', DATE(PRO83A)) AS REL_PART_DT_GEB,&lt;BR /&gt;&amp;nbsp;PRD61A AS BEROEP,&lt;BR /&gt;&amp;nbsp;IF(PRO2X3A = '0001-01-01', '', DATE(PRO2X3A)) AS REL_PART_DT_OVERL&lt;/P&gt;&lt;P&gt;FROM&lt;BR /&gt;[V:\\GL_PROSNPP.CSV]&lt;BR /&gt;(txt, codepage is 1252, embedded labels, delimiter is ';', msq);&lt;/P&gt;&lt;P&gt;Left join&lt;BR /&gt;LOAD PRO2PA AS REL_ALG_NR_EXTERN,&lt;BR /&gt;PRO2XAA AS REL_ALG_NM_RELATIE,&lt;BR /&gt;50 AS REL_ALG_KD_TITULT&lt;BR /&gt;FROM&lt;BR /&gt;[V:\\GL_PROSRPP.CSV]&lt;BR /&gt;(txt, codepage is 1252, embedded labels, delimiter is ';', msq) ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now you don't loss any records&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2019 12:52:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-merge-table-with-same-fields-but-different-data/m-p/1583350#M738818</guid>
      <dc:creator>mrtinsjoao</dc:creator>
      <dc:date>2019-05-22T12:52:03Z</dc:date>
    </item>
    <item>
      <title>Re: Join/merge table with same fields but different data</title>
      <link>https://community.qlik.com/t5/QlikView/Join-merge-table-with-same-fields-but-different-data/m-p/1583373#M738819</link>
      <description>&lt;P&gt;Sorry Mrtinsjaoa. I'm still quite new to QV, so maybe i misunderstand.&lt;/P&gt;&lt;P&gt;But is this not almost the same as I was doing except turning around the 'Business' and the 'Customer' table?&lt;/P&gt;&lt;P&gt;My problem is that if i join the 3 tables like this, the 2nd join will result in empty records cause the 3rd table can't find the 'REL_ALG_NR_EXTERN' &amp;amp; 'REL_ALG_NM_RELATIE' &amp;amp; 'REL_ALG_KD_TITULT'&amp;nbsp; key.&lt;/P&gt;&lt;P&gt;It works fine with the 1st join cause then the join is only made on the 'REL_ALG_NR_EXTERN' field. My problem is the 2nd join.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="QVjoin.png" style="width: 826px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/12490i0FCE4DAF43DFCFAC/image-size/large?v=v2&amp;amp;px=999" role="button" title="QVjoin.png" alt="QVjoin.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2019 13:19:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-merge-table-with-same-fields-but-different-data/m-p/1583373#M738819</guid>
      <dc:creator>Timba69</dc:creator>
      <dc:date>2019-05-22T13:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: Join/merge table with same fields but different data</title>
      <link>https://community.qlik.com/t5/QlikView/Join-merge-table-with-same-fields-but-different-data/m-p/1583393#M738820</link>
      <description>haha, you always learn something new in qlikview.&lt;BR /&gt;when you join, you will have just one table.&lt;BR /&gt;if you not join, qlikview auto concatenate the tables and the entries that not match will be there.&lt;BR /&gt;i think the key that are wrong is "REL_ALG_KD_TITULT" on the 3 table.</description>
      <pubDate>Wed, 22 May 2019 13:26:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-merge-table-with-same-fields-but-different-data/m-p/1583393#M738820</guid>
      <dc:creator>mrtinsjoao</dc:creator>
      <dc:date>2019-05-22T13:26:57Z</dc:date>
    </item>
    <item>
      <title>Re: Join/merge table with same fields but different data</title>
      <link>https://community.qlik.com/t5/QlikView/Join-merge-table-with-same-fields-but-different-data/m-p/1583418#M738821</link>
      <description>&lt;P&gt;Yes haha.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The main problem is that i need 1 table. I know the auto concatenate provides me with the right data, but i wan't to change '-' fields after the load.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Both the "REL_ALG_KD_TITULT" and the "REL_ALG_NM_RELATIE" cause the problem. They are unique in combination with the "REL_ALG_NR_EXTERN".&lt;/P&gt;&lt;P&gt;But discussing this issue with you gave me a new idea.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will rename the "REL_ALG_KD_TITULT" and the "REL_ALG_NM_RELATIE" into ".. TITULT2" AND "....RELATIE2". This way the load goes smoothly into 1 table. After i can reload the table and move the data back to the original fields.&lt;/P&gt;&lt;P&gt;Would that work?&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="QVjoinExport2.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/12495iA9820D4B7C950E03/image-size/medium?v=v2&amp;amp;px=400" role="button" title="QVjoinExport2.png" alt="QVjoinExport2.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="QVjoinExport.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/12494i35B06661F4C29B02/image-size/medium?v=v2&amp;amp;px=400" role="button" title="QVjoinExport.png" alt="QVjoinExport.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2019 14:54:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-merge-table-with-same-fields-but-different-data/m-p/1583418#M738821</guid>
      <dc:creator>Timba69</dc:creator>
      <dc:date>2019-05-22T14:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: Join/merge table with same fields but different data</title>
      <link>https://community.qlik.com/t5/QlikView/Join-merge-table-with-same-fields-but-different-data/m-p/1583452#M738822</link>
      <description>to change de ' - ' per 'N' you can do that&lt;BR /&gt;noconcatenate&lt;BR /&gt;TEMP:&lt;BR /&gt;LOAD&lt;BR /&gt;if(isnull(REL_ALG_NR_EXTERN),N, REL_ALG_NR_EXTERN) as REL_ALG_NR_EXTERN,&lt;BR /&gt;REL_ALG_KD_SRT_REL,&lt;BR /&gt;REL_ALG_EMAIL,&lt;BR /&gt;MAILIND,&lt;BR /&gt;&amp;nbsp;REL_PART_NM_ROEP,&lt;BR /&gt;&amp;nbsp;REL_ALG_VOORLT,&lt;BR /&gt;&amp;nbsp;REL_ALG_VOORVG,&lt;BR /&gt;&amp;nbsp;REL_ALG_NM_RELATIE,&lt;BR /&gt;REL_ALG_KD_TITULT,&lt;BR /&gt;&amp;nbsp;if(isnull(ROKEN),N,ROKEN) as ROKEN&lt;BR /&gt;&amp;nbsp;if(isnull(%AO),N,%AO) as %AO&lt;BR /&gt;&amp;nbsp;REL_PART_GESL_REL,&lt;BR /&gt;REL_PART_DT_GEB,&lt;BR /&gt;&amp;nbsp;PRD61A AS BEROEP,&lt;BR /&gt;REL_PART_DT_OVERL&lt;BR /&gt;REL_ALG_NM_RELATIE,&lt;BR /&gt;REL_ALG_KD_TITULT&lt;BR /&gt;Resident ReloadMain;&lt;BR /&gt;</description>
      <pubDate>Wed, 22 May 2019 14:44:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-merge-table-with-same-fields-but-different-data/m-p/1583452#M738822</guid>
      <dc:creator>mrtinsjoao</dc:creator>
      <dc:date>2019-05-22T14:44:54Z</dc:date>
    </item>
    <item>
      <title>Re: Join/merge table with same fields but different data</title>
      <link>https://community.qlik.com/t5/QlikView/Join-merge-table-with-same-fields-but-different-data/m-p/1583457#M738823</link>
      <description>&lt;P&gt;Yes, that's what i did.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;RelatieMain:&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;REL_ALG_NR_EXTERN,&lt;BR /&gt;REL_ALG_KD_SRT_REL,&lt;BR /&gt;REL_ALG_EMAIL,&lt;BR /&gt;MAILIND,&lt;BR /&gt;IF(ISNULL(REL_ALG_NM_RELATIE), REL_ALG_NM_RELATIE_NP, REL_ALG_NM_RELATIE) AS REL_ALG_NM_RELATIE,&lt;BR /&gt;IF(ISNULL(REL_ALG_KD_TITULT), REL_ALG_KD_TITULT_NP, REL_ALG_KD_TITULT) AS REL_ALG_KD_TITULT,&lt;BR /&gt;REL_PART_NM_ROEP,&lt;BR /&gt;REL_ALG_VOORLT,&lt;BR /&gt;REL_ALG_VOORVG,&lt;BR /&gt;ROKEN,&lt;BR /&gt;%AO,&lt;BR /&gt;REL_PART_GESL_REL,&lt;BR /&gt;REL_PART_DT_GEB,&lt;BR /&gt;BEROEP,&lt;BR /&gt;REL_PART_DT_OVERL,&lt;BR /&gt;NWSBRF,&lt;BR /&gt;INZNVRZ,&lt;BR /&gt;UITVMON,&lt;BR /&gt;HERKOMST,&lt;BR /&gt;APINR,&lt;BR /&gt;REL_PART_NR_SOFI,&lt;BR /&gt;ADRCAT,&lt;BR /&gt;PSTCALG,&lt;BR /&gt;REL_ALG_KORADR,&lt;BR /&gt;REL_ALG_POSTKD,&lt;BR /&gt;REL_ALG_WOONPL,&lt;BR /&gt;REL_ALG_KD_LAND,&lt;BR /&gt;REL_ALG_NR_TELPRIVE,&lt;BR /&gt;REL_ALG_NR_TELZAAK,&lt;BR /&gt;REL_ALG_NR_FAX,&lt;BR /&gt;REL_ALG_NR_TELAUTO,&lt;BR /&gt;ALG_BANK_KD_LAND_1,&lt;BR /&gt;ALG_BANK_NR_REKENING_1,&lt;BR /&gt;ALG_BANK_NR_BIC_1,&lt;BR /&gt;ALG_BANK_NR_IBAN_1,&lt;BR /&gt;ALG_BANK_KD_LAND_2,&lt;BR /&gt;ALG_BANK_NR_REKENING_2,&lt;BR /&gt;ALG_BANK_NR_BIC_2,&lt;BR /&gt;ALG_BANK_NR_IBAN_2,&lt;BR /&gt;ALG_BANK_KD_LAND_3,&lt;BR /&gt;ALG_BANK_NR_REKENING_3,&lt;BR /&gt;ALG_BANK_NR_BIC_3,&lt;BR /&gt;ALG_BANK_NR_IBAN_3,&lt;BR /&gt;ALG_BANK_KD_LAND_4,&lt;BR /&gt;ALG_BANK_NR_REKENING_4,&lt;BR /&gt;ALG_BANK_NR_BIC_4,&lt;BR /&gt;ALG_BANK_NR_IBAN_4,&lt;BR /&gt;TP,&lt;BR /&gt;CTCTPERS,&lt;BR /&gt;BETPL,&lt;BR /&gt;VERZNM,&lt;BR /&gt;VERZEKERDE,&lt;BR /&gt;PANDHDR&lt;/P&gt;&lt;P&gt;Resident Relatie;&lt;/P&gt;&lt;P&gt;DROP Table Relatie;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your suggestions and time!&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2019 14:50:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-merge-table-with-same-fields-but-different-data/m-p/1583457#M738823</guid>
      <dc:creator>Timba69</dc:creator>
      <dc:date>2019-05-22T14:50:08Z</dc:date>
    </item>
  </channel>
</rss>

