<?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 Left join two RESIDENT tables WITHOUT further SQL calls in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Left-join-two-RESIDENT-tables-WITHOUT-further-SQL-calls/m-p/269360#M708773</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you need to have all three tables in the final data model then use Jason's code after you have loaded both tabled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mapping load is a temporary table that goes away after a reload.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ALL_MEMBERS:&lt;/P&gt;&lt;P&gt;Load * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MEMBERID, RANDOM1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; C, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; D, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; E, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; F, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; G, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; H, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; I, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; J, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; K, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; L, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; M, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; N, a&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SOME_MEMBERS:&lt;/P&gt;&lt;P&gt;Load * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MEMBERID, RANDOM2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; C, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; G, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; L, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; M, a&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//now use jason's approach&amp;nbsp; I did not edit the field names but know they need to match your code above.&lt;/P&gt;&lt;P&gt;Map_SomeMembers:&lt;/P&gt;&lt;P&gt;MAPPING LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; MemberID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 'Yes'&lt;/P&gt;&lt;P&gt;RESIDENT some_members;&lt;/P&gt;&lt;P style="min-height: 8pt; height: 8pt;"&gt;//The table above goes away&amp;nbsp; after reload&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; height: 8pt;"&gt;//Its important that this table has a different structure than the all members table because QlikView will concatenate it to all members. &lt;/P&gt;&lt;P&gt;New_Table:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; MemberID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ApplyMap('Map_SomeMembers',MemberID,'No') AS Check&lt;/P&gt;&lt;P&gt;RESIDENT all_members;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now you should have 3 tables all linked via MemberID.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Sep 2011 20:18:32 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-09-16T20:18:32Z</dc:date>
    <item>
      <title>Left join two RESIDENT tables WITHOUT further SQL calls</title>
      <link>https://community.qlik.com/t5/QlikView/Left-join-two-RESIDENT-tables-WITHOUT-further-SQL-calls/m-p/269355#M708768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I have been searching the forum for hours for a single example of what I need.&amp;nbsp; Every join statement I have come across does an "if exists" on a SQL load.&amp;nbsp; I don't want to go back to the database for data that I already have in memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have two resident tables with a common field.&amp;nbsp; All values of this field appear in one table.&amp;nbsp; the other table has only *some* of the values.&amp;nbsp; I need to join them getting all distinct values of the field and a "yes" if a value appears in both and a "no" if it appears in only one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tables are all_members and some_members (self explanatory).&amp;nbsp; The field common to both is MemberID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need a load statement that creates a *third* table with two fields - MemberID and the aforementioned 'Yes' or 'No' value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Help please!!!!&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Sep 2011 18:22:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Left-join-two-RESIDENT-tables-WITHOUT-further-SQL-calls/m-p/269355#M708768</guid>
      <dc:creator />
      <dc:date>2011-09-16T18:22:50Z</dc:date>
    </item>
    <item>
      <title>Re: Left join two RESIDENT tables WITHOUT further SQL calls</title>
      <link>https://community.qlik.com/t5/QlikView/Left-join-two-RESIDENT-tables-WITHOUT-further-SQL-calls/m-p/269356#M708769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I used the lookup() function.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SomeMembers:&lt;/P&gt;&lt;P&gt;LOAD MemberID, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Name&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is SomeMembers);&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;/P&gt;&lt;P&gt;AllMembers:&lt;/P&gt;&lt;P&gt;LOAD MemberID, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Name,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(isnull(lookup('Name', 'MemberID',MemberID, 'SomeMembers')),'No','Yes') as Test&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is AllMembers);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See attacchment.&amp;nbsp; Not sure that is what you are looking for. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Sep 2011 19:04:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Left-join-two-RESIDENT-tables-WITHOUT-further-SQL-calls/m-p/269356#M708769</guid>
      <dc:creator />
      <dc:date>2011-09-16T19:04:03Z</dc:date>
    </item>
    <item>
      <title>Left join two RESIDENT tables WITHOUT further SQL calls</title>
      <link>https://community.qlik.com/t5/QlikView/Left-join-two-RESIDENT-tables-WITHOUT-further-SQL-calls/m-p/269357#M708770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Assuming all_members and some_members are already loaded earlier in the script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Map_SomeMembers:&lt;/P&gt;&lt;P&gt;MAPPING LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; MemberID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 'Yes'&lt;/P&gt;&lt;P&gt;RESIDENT some_members;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;New_Table:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; MemberID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ApplyMap('Map_SomeMembers',MemberID,'No') AS Check&lt;/P&gt;&lt;P&gt;RESIDENT all_members;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That should do it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jason&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Sep 2011 19:27:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Left-join-two-RESIDENT-tables-WITHOUT-further-SQL-calls/m-p/269357#M708770</guid>
      <dc:creator>Jason_Michaelides</dc:creator>
      <dc:date>2011-09-16T19:27:46Z</dc:date>
    </item>
    <item>
      <title>Left join two RESIDENT tables WITHOUT further SQL calls</title>
      <link>https://community.qlik.com/t5/QlikView/Left-join-two-RESIDENT-tables-WITHOUT-further-SQL-calls/m-p/269358#M708771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jason's approach works too.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Sep 2011 19:29:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Left-join-two-RESIDENT-tables-WITHOUT-further-SQL-calls/m-p/269358#M708771</guid>
      <dc:creator />
      <dc:date>2011-09-16T19:29:29Z</dc:date>
    </item>
    <item>
      <title>Re: Left join two RESIDENT tables WITHOUT further SQL calls</title>
      <link>https://community.qlik.com/t5/QlikView/Left-join-two-RESIDENT-tables-WITHOUT-further-SQL-calls/m-p/269359#M708772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I really appreciate the fast response!&amp;nbsp; Unfortunately, I simply do not know enough about the syntax to adapt your suggestion to my needs.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your lookup&amp;nbsp; only produces two tables, and they load from an external data source.&amp;nbsp; I needed examples of creating a third based on the join results of two resident tables.&amp;nbsp;&amp;nbsp; I am sure that's a trivial difference to you, but it is a high hurdle for new users.&amp;nbsp; There are tons of posts here about this very topic and each one has slight differences that vastly change the solution&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How about another approach - here is a sample load with simple inline data and an explanation of what I need next&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ALL_MEMBERS:&lt;/P&gt;&lt;P&gt;Load * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MEMBERID, RANDOM1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; C, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; D, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; E, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; F, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; G, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; H, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; I, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; J, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; K, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; L, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; M, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; N, a&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SOME_MEMBERS:&lt;/P&gt;&lt;P&gt;Load * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MEMBERID, RANDOM2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; C, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; G, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; L, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; M, a&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I added the "RANDOM*" columns so QV would not simply concatenate the two tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need a table with the following:&lt;/P&gt;&lt;P&gt;1) All MEMBERID values from ALL_MEMBERS (aliased as anything you want)&lt;/P&gt;&lt;P&gt;2) 'Yes' if the MEMBERID value from ALL_MEMBERS appears in SOME_MEMBERS, 'No' if it does not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much for your help!&amp;nbsp; I've been beating my head against my desk all day.&amp;nbsp; Qlikview never fails to make me feel like a flailing idiot. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Sep 2011 19:55:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Left-join-two-RESIDENT-tables-WITHOUT-further-SQL-calls/m-p/269359#M708772</guid>
      <dc:creator />
      <dc:date>2011-09-16T19:55:12Z</dc:date>
    </item>
    <item>
      <title>Left join two RESIDENT tables WITHOUT further SQL calls</title>
      <link>https://community.qlik.com/t5/QlikView/Left-join-two-RESIDENT-tables-WITHOUT-further-SQL-calls/m-p/269360#M708773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you need to have all three tables in the final data model then use Jason's code after you have loaded both tabled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mapping load is a temporary table that goes away after a reload.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ALL_MEMBERS:&lt;/P&gt;&lt;P&gt;Load * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MEMBERID, RANDOM1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; C, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; D, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; E, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; F, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; G, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; H, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; I, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; J, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; K, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; L, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; M, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; N, a&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SOME_MEMBERS:&lt;/P&gt;&lt;P&gt;Load * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MEMBERID, RANDOM2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; C, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; G, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; L, a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; M, a&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//now use jason's approach&amp;nbsp; I did not edit the field names but know they need to match your code above.&lt;/P&gt;&lt;P&gt;Map_SomeMembers:&lt;/P&gt;&lt;P&gt;MAPPING LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; MemberID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 'Yes'&lt;/P&gt;&lt;P&gt;RESIDENT some_members;&lt;/P&gt;&lt;P style="min-height: 8pt; height: 8pt;"&gt;//The table above goes away&amp;nbsp; after reload&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; height: 8pt;"&gt;//Its important that this table has a different structure than the all members table because QlikView will concatenate it to all members. &lt;/P&gt;&lt;P&gt;New_Table:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; MemberID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ApplyMap('Map_SomeMembers',MemberID,'No') AS Check&lt;/P&gt;&lt;P&gt;RESIDENT all_members;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now you should have 3 tables all linked via MemberID.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Sep 2011 20:18:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Left-join-two-RESIDENT-tables-WITHOUT-further-SQL-calls/m-p/269360#M708773</guid>
      <dc:creator />
      <dc:date>2011-09-16T20:18:32Z</dc:date>
    </item>
    <item>
      <title>Re: Left join two RESIDENT tables WITHOUT further SQL calls</title>
      <link>https://community.qlik.com/t5/QlikView/Left-join-two-RESIDENT-tables-WITHOUT-further-SQL-calls/m-p/269361#M708774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to use "NoConcatenate" to prevent QlikView joining 2 identical tables.&amp;nbsp; Try this mate:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ALL_MEMBERS:&lt;/P&gt;&lt;P&gt;Load * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MEMBERID&lt;/P&gt;&lt;P&gt;A&lt;/P&gt;&lt;P&gt;B&lt;/P&gt;&lt;P&gt;C&lt;/P&gt;&lt;P&gt;D&lt;/P&gt;&lt;P&gt;E&lt;/P&gt;&lt;P&gt;F&lt;/P&gt;&lt;P&gt;G&lt;/P&gt;&lt;P&gt;H&lt;/P&gt;&lt;P&gt;I&lt;/P&gt;&lt;P&gt;J&lt;/P&gt;&lt;P&gt;K&lt;/P&gt;&lt;P&gt;L&lt;/P&gt;&lt;P&gt;M&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SOME_MEMBERS:&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;Load * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MEMBERID&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; C&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; G&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; L&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; M&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Map_Members:&lt;/P&gt;&lt;P&gt;MAPPING LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; MEMBERID,&lt;/P&gt;&lt;P&gt;&amp;nbsp; 'Yes'&lt;/P&gt;&lt;P&gt;RESIDENT SOME_MEMBERS;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FINAL TABLE:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; MEMBERID,&lt;/P&gt;&lt;P&gt;&amp;nbsp; ApplyMap('Map_Members',MemberID,'No')&amp;nbsp; AS&amp;nbsp; Check&lt;/P&gt;&lt;P&gt;RESIDENT ALL_MEMBERS;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stick at it - QlikView is a completely brilliant product with so much awesome functionality!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jason&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Sep 2011 20:20:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Left-join-two-RESIDENT-tables-WITHOUT-further-SQL-calls/m-p/269361#M708774</guid>
      <dc:creator>Jason_Michaelides</dc:creator>
      <dc:date>2011-09-16T20:20:52Z</dc:date>
    </item>
    <item>
      <title>Left join two RESIDENT tables WITHOUT further SQL calls</title>
      <link>https://community.qlik.com/t5/QlikView/Left-join-two-RESIDENT-tables-WITHOUT-further-SQL-calls/m-p/269362#M708775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I should have mentioned that having all three tables survive was a key element of my goal.&amp;nbsp; I had a field in the Some_members table with the value "yes" for all fields so that I could drill into only those members by selecting the only available value for that field in a listbox - but there was no corresponding "no" to link to the other records that appeared in All_members but not Some_Members.&amp;nbsp; Make sense?&amp;nbsp; I needed to create this data point to have the binary yes/no to drill into one or both.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much for the responses.&amp;nbsp; The activity in this community never ceases to amaze me.&amp;nbsp; QV obviously has a die hard following.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again!&amp;nbsp; Cheers!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Sep 2011 20:23:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Left-join-two-RESIDENT-tables-WITHOUT-further-SQL-calls/m-p/269362#M708775</guid>
      <dc:creator />
      <dc:date>2011-09-16T20:23:57Z</dc:date>
    </item>
    <item>
      <title>Left join two RESIDENT tables WITHOUT further SQL calls</title>
      <link>https://community.qlik.com/t5/QlikView/Left-join-two-RESIDENT-tables-WITHOUT-further-SQL-calls/m-p/269363#M708776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did not know the NoConcatenate trick!&amp;nbsp; Luckily I have not run into loading two tables with the same structure that I need to keep separate - the example below was just for argument's sake.&amp;nbsp; My actual data does not share structures between the two tables.&amp;nbsp; But thanks for the tip!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Sep 2011 20:26:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Left-join-two-RESIDENT-tables-WITHOUT-further-SQL-calls/m-p/269363#M708776</guid>
      <dc:creator />
      <dc:date>2011-09-16T20:26:01Z</dc:date>
    </item>
    <item>
      <title>Left join two RESIDENT tables WITHOUT further SQL calls</title>
      <link>https://community.qlik.com/t5/QlikView/Left-join-two-RESIDENT-tables-WITHOUT-further-SQL-calls/m-p/269364#M708777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The mapping load approached in a sample document with inline tables.&amp;nbsp; The full document is loading now.&amp;nbsp; Fingers crossed!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Sep 2011 20:27:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Left-join-two-RESIDENT-tables-WITHOUT-further-SQL-calls/m-p/269364#M708777</guid>
      <dc:creator />
      <dc:date>2011-09-16T20:27:05Z</dc:date>
    </item>
  </channel>
</rss>

