<?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 referencing fields in both tables in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Left-join-referencing-fields-in-both-tables/m-p/145605#M716949</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gordon, thanks for your answer.&lt;/P&gt;&lt;P&gt;I'm already doing it like that (actually im using a iszero flag-field instead of a where clause, but it's a same principle). What I was looking for is all-in-one-join solution. I guess it's not possible to do it the way i have imagined it.&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Marko&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 02 Jun 2009 16:15:58 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-06-02T16:15:58Z</dc:date>
    <item>
      <title>Left join referencing fields in both tables</title>
      <link>https://community.qlik.com/t5/QlikView/Left-join-referencing-fields-in-both-tables/m-p/145603#M716947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;is it possible to do a join in QV while, at the same time referencing fields from both tables?&lt;/P&gt;&lt;P&gt;Let's say i have table A and table B. I'm left joining table B to A using key field [EntryNo], but only where [InvovicedQuantity] in table A is &amp;lt;&amp;gt; 0. Is the possible to do that in one join?&lt;/P&gt;&lt;P&gt;Or do I have to join first and than resident load from A while putting 0 or Null in the joined fields where InvoicedQuantity is 0?&lt;/P&gt;&lt;P&gt;Thanks for your help,&lt;/P&gt;&lt;P&gt;Marko&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2009 15:12:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Left-join-referencing-fields-in-both-tables/m-p/145603#M716947</guid>
      <dc:creator />
      <dc:date>2009-06-02T15:12:26Z</dc:date>
    </item>
    <item>
      <title>Left join referencing fields in both tables</title>
      <link>https://community.qlik.com/t5/QlikView/Left-join-referencing-fields-in-both-tables/m-p/145604#M716948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marko,&lt;/P&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;LOAD EntryNo,&lt;BR /&gt; InvoicedQuantity&lt;BR /&gt;FROM TableA&lt;BR /&gt;WHERE InvoicedQuantity &amp;lt;&amp;gt; 0;&lt;BR /&gt;LEFT JOIN&lt;BR /&gt;LOAD EntryNo,&lt;BR /&gt; Other&lt;BR /&gt;FROM TableB;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gordon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2009 15:33:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Left-join-referencing-fields-in-both-tables/m-p/145604#M716948</guid>
      <dc:creator />
      <dc:date>2009-06-02T15:33:34Z</dc:date>
    </item>
    <item>
      <title>Left join referencing fields in both tables</title>
      <link>https://community.qlik.com/t5/QlikView/Left-join-referencing-fields-in-both-tables/m-p/145605#M716949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gordon, thanks for your answer.&lt;/P&gt;&lt;P&gt;I'm already doing it like that (actually im using a iszero flag-field instead of a where clause, but it's a same principle). What I was looking for is all-in-one-join solution. I guess it's not possible to do it the way i have imagined it.&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Marko&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2009 16:15:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Left-join-referencing-fields-in-both-tables/m-p/145605#M716949</guid>
      <dc:creator />
      <dc:date>2009-06-02T16:15:58Z</dc:date>
    </item>
    <item>
      <title>Left join referencing fields in both tables</title>
      <link>https://community.qlik.com/t5/QlikView/Left-join-referencing-fields-in-both-tables/m-p/145606#M716950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about this?&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt; EntryNo&lt;BR /&gt;,InvoicedQuantity&lt;BR /&gt;,if(InvoicedQuantity,EntryNo) as InvoicedEntryNo&lt;BR /&gt;FROM TableA&lt;BR /&gt;;&lt;BR /&gt;LEFT JOIN&lt;BR /&gt;LOAD&lt;BR /&gt; EntryNo&lt;BR /&gt;,Other&lt;BR /&gt;FROM TableB&lt;BR /&gt;WHERE EXISTS(InvoicedEntryNo,EntryNo)&lt;BR /&gt;;&lt;BR /&gt;DROP FIELD InvoicedEntryNo&lt;BR /&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2009 01:17:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Left-join-referencing-fields-in-both-tables/m-p/145606#M716950</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2009-06-03T01:17:20Z</dc:date>
    </item>
  </channel>
</rss>

