<?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 Joining Two Resident Tables Created Using CrossTable in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189859#M52579</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok here's the code using INLINE loads:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt; &lt;I&gt;TempQtr:&lt;BR /&gt; LOAD * INLINE [&lt;BR /&gt; Quarter, FiscalYear, TotalRev, EBT, Opex&lt;BR /&gt; Q1, 2009, 1000, 200, 300&lt;BR /&gt; Q2, 2009, 3123, 323, 232&lt;BR /&gt; Q3, 2009, 2323, 323, 323&lt;BR /&gt; Q4, 2009, 2322, 323, 332&lt;BR /&gt;];&lt;/I&gt;&lt;BR /&gt;&lt;I&gt;&lt;BR /&gt;TempYr:&lt;BR /&gt; LOAD * INLINE [&lt;BR /&gt; FiscalYear, TotalRev, EBT, Opex&lt;BR /&gt; 2009, 9878, 45645, 4567&lt;BR /&gt; 2009, 52562, 3253, 2532&lt;BR /&gt; 2009, 254656, 3243, 3235&lt;BR /&gt; 2009, 232522, 3253, 3325];&lt;BR /&gt;&lt;BR /&gt;CrossQtr:&lt;BR /&gt; CROSSTABLE(Measure, QtrValue,2)&lt;BR /&gt; LOAD * RESIDENT TempQtr;&lt;BR /&gt;&lt;BR /&gt;CrossYr:&lt;BR /&gt; CROSSTABLE(Measure, YrValue,1)&lt;BR /&gt; LOAD * RESIDENT TempYr;&lt;BR /&gt;&lt;BR /&gt;Finances:&lt;BR /&gt; LOAD * RESIDENT CrossQtr;&lt;BR /&gt; JOIN LOAD * RESIDENT CrossYr;&lt;BR /&gt;&lt;/I&gt;&lt;BR /&gt;&lt;I&gt;DROP TABLES TempQtr, TempYr, CrossQtr, CrossYr;&lt;BR /&gt;&lt;/I&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Sep 2009 06:40:36 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-09-17T06:40:36Z</dc:date>
    <item>
      <title>Joining Two Resident Tables Created Using CrossTable</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189854#M52574</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 two tables I created via my load script using the crosstable statement for both. See below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE ___default_attr="plain" class="jive_text_macro jive_macro_code" jivemacro="code"&gt;&lt;BR /&gt;CrossQtr:&lt;BR /&gt;CROSSTABLE(Measure, QtrValue,5)&lt;BR /&gt;LOAD *&lt;BR /&gt;RESIDENT TempQtr;&lt;BR /&gt;CrossYr:&lt;BR /&gt;CROSSTABLE(Measure, YrValue,4)&lt;BR /&gt;LOAD *&lt;BR /&gt;RESIDENT TempYr;&lt;BR /&gt;[/CODE]&lt;BR /&gt;Both tables end up having several fields that are identical, except for the last field being QtrValue &amp;amp; YrValue. What I want to do is JOIN both tables into a single table. I used the following code but it ends up not doing anything:&lt;BR /&gt;&amp;lt;pre&amp;gt;&lt;BR /&gt;Data:&lt;BR /&gt;JOIN(CrossQtr) LOAD * RESIDENT CrossYr;&lt;BR /&gt;DROP TABLES CrossQtr, CrossYr;&lt;BR /&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Can anyone tell me what i'm doing wrong?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2009 06:02:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189854#M52574</guid>
      <dc:creator />
      <dc:date>2009-09-17T06:02:06Z</dc:date>
    </item>
    <item>
      <title>Joining Two Resident Tables Created Using CrossTable</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189855#M52575</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use CONCATENATE instead of JOIN.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2009 06:14:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189855#M52575</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2009-09-17T06:14:16Z</dc:date>
    </item>
    <item>
      <title>Joining Two Resident Tables Created Using CrossTable</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189856#M52576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Still doesn't work. For some reason it all just gets dropped and I end up with nothing, no tables, no data, nothing...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2009 06:20:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189856#M52576</guid>
      <dc:creator />
      <dc:date>2009-09-17T06:20:52Z</dc:date>
    </item>
    <item>
      <title>Joining Two Resident Tables Created Using CrossTable</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189857#M52577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post an example using inline loads?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2009 06:25:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189857#M52577</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2009-09-17T06:25:46Z</dc:date>
    </item>
    <item>
      <title>Joining Two Resident Tables Created Using CrossTable</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189858#M52578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The "Data" table was never created - instead it was CrossQtr, the one you dropped in the next line.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2009 06:27:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189858#M52578</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-09-17T06:27:47Z</dc:date>
    </item>
    <item>
      <title>Joining Two Resident Tables Created Using CrossTable</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189859#M52579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok here's the code using INLINE loads:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt; &lt;I&gt;TempQtr:&lt;BR /&gt; LOAD * INLINE [&lt;BR /&gt; Quarter, FiscalYear, TotalRev, EBT, Opex&lt;BR /&gt; Q1, 2009, 1000, 200, 300&lt;BR /&gt; Q2, 2009, 3123, 323, 232&lt;BR /&gt; Q3, 2009, 2323, 323, 323&lt;BR /&gt; Q4, 2009, 2322, 323, 332&lt;BR /&gt;];&lt;/I&gt;&lt;BR /&gt;&lt;I&gt;&lt;BR /&gt;TempYr:&lt;BR /&gt; LOAD * INLINE [&lt;BR /&gt; FiscalYear, TotalRev, EBT, Opex&lt;BR /&gt; 2009, 9878, 45645, 4567&lt;BR /&gt; 2009, 52562, 3253, 2532&lt;BR /&gt; 2009, 254656, 3243, 3235&lt;BR /&gt; 2009, 232522, 3253, 3325];&lt;BR /&gt;&lt;BR /&gt;CrossQtr:&lt;BR /&gt; CROSSTABLE(Measure, QtrValue,2)&lt;BR /&gt; LOAD * RESIDENT TempQtr;&lt;BR /&gt;&lt;BR /&gt;CrossYr:&lt;BR /&gt; CROSSTABLE(Measure, YrValue,1)&lt;BR /&gt; LOAD * RESIDENT TempYr;&lt;BR /&gt;&lt;BR /&gt;Finances:&lt;BR /&gt; LOAD * RESIDENT CrossQtr;&lt;BR /&gt; JOIN LOAD * RESIDENT CrossYr;&lt;BR /&gt;&lt;/I&gt;&lt;BR /&gt;&lt;I&gt;DROP TABLES TempQtr, TempYr, CrossQtr, CrossYr;&lt;BR /&gt;&lt;/I&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2009 06:40:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189859#M52579</guid>
      <dc:creator />
      <dc:date>2009-09-17T06:40:36Z</dc:date>
    </item>
    <item>
      <title>Joining Two Resident Tables Created Using CrossTable</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189860#M52580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Michael's right about why your data disappeared. I didn't catch that at first. As for fixing the problem, you need NOCONCATENATE before the first load to Finances, and CONCATENATE instead of JOIN for the second:&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;Finances:&lt;BR /&gt;NOCONCATENATE LOAD * RESIDENT CrossQtr;&lt;BR /&gt; CONCATENATE LOAD * RESIDENT CrossYr;&lt;/P&gt;&lt;P&gt;The first tells it to make a NEW table instead of just giving CrossQtr an alias of Finances. The second tells it to add the rows from CrossYr even though the fields don't all match the existing Finances table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2009 06:51:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189860#M52580</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2009-09-17T06:51:01Z</dc:date>
    </item>
    <item>
      <title>Joining Two Resident Tables Created Using CrossTable</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189861#M52581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Same thing... See this part:&lt;BR /&gt;&lt;B&gt;Finances:&lt;BR /&gt; LOAD * RESIDENT CrossQtr;&lt;/B&gt;&lt;BR /&gt;Obviously the table Finance was not created because it contains the same exactly fields as CrossQtr. The simplies way to fix is to use only&lt;BR /&gt;&lt;B&gt;JOIN (CrossQtr) LOAD * RESIDENT CrossYr;&lt;/B&gt;&lt;BR /&gt;And, &lt;B&gt;do not drop CrossQtr&lt;/B&gt;, because tjhis is the one you want to keep.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2009 06:53:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189861#M52581</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-09-17T06:53:40Z</dc:date>
    </item>
    <item>
      <title>Joining Two Resident Tables Created Using CrossTable</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189862#M52582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Forgot NONCONCATENATE - yes, techically it is simpler to add just one key word.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2009 06:56:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189862#M52582</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-09-17T06:56:21Z</dc:date>
    </item>
    <item>
      <title>Joining Two Resident Tables Created Using CrossTable</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189863#M52583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="jive_text_macro jive_macro_quote" jivemacro="quote"&gt;&lt;BR /&gt;Michael Solomovich wrote:Forgot NONCONCATENATE - yes, techically it is simpler to add just one key word.&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;*chuckle* Yeah, but nicer for maintenance if we get rid of some temp tables. I got it down to one temp table like this:&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;Finances:&lt;BR /&gt;CROSSTABLE(Measure, QtrValue,2)&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt; Quarter, FiscalYear, TotalRev, EBT, Opex&lt;BR /&gt; Q1, 2009, 1000, 200, 300&lt;BR /&gt; Q2, 2009, 3123, 323, 232&lt;BR /&gt; Q3, 2009, 2323, 323, 323&lt;BR /&gt; Q4, 2009, 2322, 323, 332&lt;BR /&gt;];&lt;BR /&gt;Temp:&lt;BR /&gt;CROSSTABLE(Measure, YrValue,1)&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt; FiscalYear, TotalRev, EBT, Opex&lt;BR /&gt; 2009, 9878, 45645, 4567&lt;BR /&gt; 2009, 52562, 3253, 2532&lt;BR /&gt; 2009, 254656, 3243, 3235&lt;BR /&gt; 2009, 232522, 3253, 3325&lt;BR /&gt;];&lt;BR /&gt;CONCATENATE ([Finances])&lt;BR /&gt;LOAD * RESIDENT Temp;&lt;BR /&gt;DROP TABLE Temp;&lt;/P&gt;&lt;P&gt;I would have EXPECTED the following to work without any temp tables, but it did not:&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;Finances:&lt;BR /&gt;CROSSTABLE(Measure, QtrValue,2)&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt; Quarter, FiscalYear, TotalRev, EBT, Opex&lt;BR /&gt; Q1, 2009, 1000, 200, 300&lt;BR /&gt; Q2, 2009, 3123, 323, 232&lt;BR /&gt; Q3, 2009, 2323, 323, 323&lt;BR /&gt; Q4, 2009, 2322, 323, 332&lt;BR /&gt;];&lt;BR /&gt;CONCATENATE LOAD *;&lt;BR /&gt;CROSSTABLE(Measure, YrValue,1)&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt; FiscalYear, TotalRev, EBT, Opex&lt;BR /&gt; 2009, 9878, 45645, 4567&lt;BR /&gt; 2009, 52562, 3253, 2532&lt;BR /&gt; 2009, 254656, 3243, 3235&lt;BR /&gt; 2009, 232522, 3253, 3325&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;Might be a way, though.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2009 07:04:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189863#M52583</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2009-09-17T07:04:10Z</dc:date>
    </item>
    <item>
      <title>Joining Two Resident Tables Created Using CrossTable</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189864#M52584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Very usefull, Thanks!&lt;/P&gt;&lt;P&gt;Aldo.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Feb 2011 15:04:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189864#M52584</guid>
      <dc:creator />
      <dc:date>2011-02-28T15:04:40Z</dc:date>
    </item>
    <item>
      <title>Joining Two Resident Tables Created Using CrossTable</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189865#M52585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a similar case. Can you help me with this issue? The idea is have no synthetic keys.&lt;/P&gt;&lt;P&gt;[View:http://community.qlik.com/cfs-file.ashx/__key/CommunityServer.Discussions.Components.Files/11/3835.Dash1.rar:550:0]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Feb 2011 19:28:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189865#M52585</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2011-02-28T19:28:46Z</dc:date>
    </item>
    <item>
      <title>Joining Two Resident Tables Created Using CrossTable</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189866#M52586</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can't unpack RAR files, and don't want to download software from the web onto my work computer in order to do so. Can you post it as a QVW? I believe that's already a compressed format.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Feb 2011 19:39:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189866#M52586</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2011-02-28T19:39:40Z</dc:date>
    </item>
    <item>
      <title>Joining Two Resident Tables Created Using CrossTable</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189867#M52587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Of course...There Goes Thanks...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Feb 2011 19:45:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189867#M52587</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2011-02-28T19:45:31Z</dc:date>
    </item>
    <item>
      <title>Joining Two Resident Tables Created Using CrossTable</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189868#M52588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;On the surface, it looks like you could simply concatenate your tables together.&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;DIRECTORY C:\Documents and Settings\pgalvezt\Desktop\COMMAND CENTER\2 UNILEVER\BRAZIL\Proyecto\QVD;&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;MyData:&lt;BR /&gt; LOAD ... FROM FRETES_INBOUND.qvd (QVD);&lt;BR /&gt;CONCATENATE (MyData) LOAD ... FROM FATURA_DE_SERVIÇO.qvd (QVD);&lt;BR /&gt;CONCATENATE (MyData) LOAD ... FROM FATURAS.qvd (QVD);&lt;BR /&gt;CONCATENATE (MyData) LOAD ... FROM FRETES_OUTBOUND.qvd (QVD);&lt;/P&gt;&lt;P&gt;Or you might want to outer join, assuming that the synthetic key really can be considered the key to all of these tables. In that case, it's probably better to have one row for each key instead of four.&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;MyData:&lt;BR /&gt; LOAD ... FROM FRETES_INBOUND.qvd (QVD);&lt;BR /&gt;OUTER JOIN (MyData) LOAD ... FROM FATURA_DE_SERVIÇO.qvd (QVD);&lt;BR /&gt;OUTER JOIN (MyData) LOAD ... FROM FATURAS.qvd (QVD);&lt;BR /&gt;OUTER JOIN (MyData) LOAD ... FROM FRETES_OUTBOUND.qvd (QVD);&lt;/P&gt;&lt;P&gt;As an aside, I would also typically use a calendar table instead of having all of those date-related fields in the main data table(s). I'd just put a date in the main data table, and put the rest of the fields in the calendar table. It should work either way, though.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Feb 2011 20:25:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189868#M52588</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2011-02-28T20:25:47Z</dc:date>
    </item>
    <item>
      <title>Joining Two Resident Tables Created Using CrossTable</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189869#M52589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John. Please could you send me a example with your data table explanation?&lt;/P&gt;&lt;P&gt;Basically my dashboard works fine. But i would like to see other examples and to have the better options.&lt;/P&gt;&lt;P&gt;I mention John, I'm working on a major project with one of my clients and I am in the final stages of automating their processes. That is, I think an application that automatically downloads files to csv format, and passes it to xls. Currently, I've created the QVD's, to perform incremental and through the server to perform daily recharges. These dashboards will be showing on screens LCDs 42 '. Dashboards really give you a bonus to the business.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Mar 2011 15:01:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189869#M52589</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2011-03-01T15:01:15Z</dc:date>
    </item>
    <item>
      <title>Joining Two Resident Tables Created Using CrossTable</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189870#M52590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;[quote user="Pablo Gálvez T"]Please could you send me a example with your data table explanation?&lt;/P&gt;&lt;P&gt;I'm sorry, but I don't understand what you want. What do you want an example of? What do you want explained?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2011 01:57:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189870#M52590</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2011-03-02T01:57:03Z</dc:date>
    </item>
    <item>
      <title>Joining Two Resident Tables Created Using CrossTable</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189871#M52591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Function Concatenate was the solution to the problem. Thanks John. I needed an example of calendars but i think my calendar works fine &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2011 13:55:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-Two-Resident-Tables-Created-Using-CrossTable/m-p/189871#M52591</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2011-03-02T13:55:54Z</dc:date>
    </item>
  </channel>
</rss>

