<?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: Need help with left join in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Need-help-with-left-join/m-p/344635#M127335</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jason,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the ideas.&lt;/P&gt;&lt;P&gt;This is full explation of the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt;"&gt;&lt;STRONG&gt;Table_A:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt;"&gt;&lt;STRONG&gt;Load Distinct *;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt;"&gt;&lt;STRONG&gt;select A_ID, X1, X2, X3, Begin_Date, End_Date&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt;"&gt;&lt;STRONG&gt;From SourceA&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt;"&gt;&lt;STRONG&gt;Table_B:&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt;"&gt;&lt;STRONG&gt;Load DIstinct *;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt;"&gt;&lt;STRONG&gt;select B_ID, Y1, Y2, Effect_Date &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt;"&gt;&lt;STRONG&gt;From SourceB&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt;"&gt;&lt;STRONG&gt;I want to merge A with B with the conditions where:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt;"&gt;&lt;STRONG&gt;1. Table_A.A_ID = Table_B.B.ID&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt;"&gt;&lt;STRONG&gt;2. Table_B.Effect_Date between Table_A.Begin_Date and Table_A.End_Date&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt;"&gt;&lt;STRONG&gt;After merge, I want to get a new table with columns&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt;"&gt;&lt;STRONG&gt;B_ID, Y1, Y2, Effect_Date, X1, X2, X3&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thanks! &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Jul 2012 23:08:22 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-07-12T23:08:22Z</dc:date>
    <item>
      <title>Need help with left join</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-with-left-join/m-p/344629#M127329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have two tables A &amp;amp; B&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the code:&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;Table_A:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;Load Distinct *&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;From SourceA&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;Load DIstinct *&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;Table_B:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;From SourceB&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;Then I will to do the left join, based on criteria.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;So I am writing&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;Left Join (Table_B)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;If(&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;Table_A&lt;/STRONG&gt;.ID &amp;gt; Table_B.ID, &lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;Table_A&lt;/STRONG&gt;.Name, null()) as Name&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;Resident Table_B&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;QlikView is telling that it could not know where the field ID Table_B.ID is from. Anyone has idea what's wrong?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Thanks a lot!&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2012 23:02:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-with-left-join/m-p/344629#M127329</guid>
      <dc:creator />
      <dc:date>2012-07-10T23:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with left join</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-with-left-join/m-p/344630#M127330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to&amp;nbsp; create the new field after the left join, something likes this....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&lt;STRONG style="font-size: 8pt; color: #0000ff;"&gt;Table_T:&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&lt;STRONG style="font-size: 8pt; color: #0000ff;"&gt;Load Distinct *&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&lt;STRONG style="font-size: 8pt; color: #0000ff;"&gt;From SourceA&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt; Left Join&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&lt;STRONG style="font-size: 8pt; color: #0000ff;"&gt;Load DIstinct *&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&lt;STRONG style="font-size: 8pt; color: #0000ff;"&gt;From SourceB&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table:&lt;/P&gt;&lt;P&gt;Noconcatenate&lt;/P&gt;&lt;P&gt;Load *,&lt;/P&gt;&lt;P&gt;&lt;STRONG style="background-color: #eef4f9; font-size: 8pt; font-family: Arial; color: #0000ff;"&gt;If(&lt;STRONG style="font-size: 8pt;"&gt;Table_A&lt;/STRONG&gt;.ID &amp;gt; Table_B.ID, &lt;STRONG style="font-size: 8pt;"&gt;Table_A&lt;/STRONG&gt;.Name, null()) as Name&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Resident Table_T&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop Table Table_T;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if this help you, regards!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 00:58:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-with-left-join/m-p/344630#M127330</guid>
      <dc:creator>edg_baltazar</dc:creator>
      <dc:date>2012-07-11T00:58:56Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with left join</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-with-left-join/m-p/344631#M127331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Edgar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, I had the same issue. Table A &amp;amp; B are from different database, so they can't be linked to each other directly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;Table_A:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;Load Distinct *&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;From SourceA&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;Table_B:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;Load DIstinct *&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;From SourceB&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table:&lt;/P&gt;&lt;P&gt;Noconcatenate&lt;/P&gt;&lt;P&gt;Load *,&lt;/P&gt;&lt;P&gt;&lt;STRONG style="background-color: #eef4f9; font-family: Arial; color: #0000ff; font-size: 8pt;"&gt;If(&lt;STRONG style="font-size: 8pt;"&gt;Table_A&lt;/STRONG&gt;.ID &amp;gt; Table_B.ID, &lt;STRONG style="font-size: 8pt;"&gt;Table_A&lt;/STRONG&gt;.Name, null()) as Name&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Resident Table_A&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's still saying it could not find field Table A.ID. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 05:15:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-with-left-join/m-p/344631#M127331</guid>
      <dc:creator />
      <dc:date>2012-07-11T05:15:43Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with left join</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-with-left-join/m-p/344632#M127332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Concatenate the two tables first and then apply the rule. No left join needed this way.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 05:40:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-with-left-join/m-p/344632#M127332</guid>
      <dc:creator>giakoum</dc:creator>
      <dc:date>2012-07-11T05:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with left join</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-with-left-join/m-p/344633#M127333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It still doesn't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone have idea how to join tables with conditions? I have searched the entire discussion board, and tried several ways, but none of the methods worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2012 22:44:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-with-left-join/m-p/344633#M127333</guid>
      <dc:creator />
      <dc:date>2012-07-12T22:44:45Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with left join</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-with-left-join/m-p/344634#M127334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please provide the field names for Tables A and B. What are the common fields? Your join doesn't make much sense in any language I think - it looks like you're joining table B onto itself but using some bits of table A. Can you explain full in English (not SQL code) what you're tryin to achieve?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jason&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2012 22:51:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-with-left-join/m-p/344634#M127334</guid>
      <dc:creator>Jason_Michaelides</dc:creator>
      <dc:date>2012-07-12T22:51:51Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with left join</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-with-left-join/m-p/344635#M127335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jason,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the ideas.&lt;/P&gt;&lt;P&gt;This is full explation of the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt;"&gt;&lt;STRONG&gt;Table_A:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt;"&gt;&lt;STRONG&gt;Load Distinct *;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt;"&gt;&lt;STRONG&gt;select A_ID, X1, X2, X3, Begin_Date, End_Date&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt;"&gt;&lt;STRONG&gt;From SourceA&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt;"&gt;&lt;STRONG&gt;Table_B:&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt;"&gt;&lt;STRONG&gt;Load DIstinct *;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt;"&gt;&lt;STRONG&gt;select B_ID, Y1, Y2, Effect_Date &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt;"&gt;&lt;STRONG&gt;From SourceB&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt;"&gt;&lt;STRONG&gt;I want to merge A with B with the conditions where:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt;"&gt;&lt;STRONG&gt;1. Table_A.A_ID = Table_B.B.ID&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt;"&gt;&lt;STRONG&gt;2. Table_B.Effect_Date between Table_A.Begin_Date and Table_A.End_Date&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt;"&gt;&lt;STRONG&gt;After merge, I want to get a new table with columns&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt;"&gt;&lt;STRONG&gt;B_ID, Y1, Y2, Effect_Date, X1, X2, X3&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thanks! &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2012 23:08:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-with-left-join/m-p/344635#M127335</guid>
      <dc:creator />
      <dc:date>2012-07-12T23:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with left join</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-with-left-join/m-p/344636#M127336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm sure there's a slightly cleaner way but it's late!&amp;nbsp; See attached...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jason&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2012 23:58:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-with-left-join/m-p/344636#M127336</guid>
      <dc:creator>Jason_Michaelides</dc:creator>
      <dc:date>2012-07-12T23:58:00Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with left join</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-with-left-join/m-p/344637#M127337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Jason.&lt;/P&gt;&lt;P&gt;I have learned a lot from you sample code.&lt;/P&gt;&lt;P&gt;Really appreciate your help! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jul 2012 00:15:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-with-left-join/m-p/344637#M127337</guid>
      <dc:creator />
      <dc:date>2012-07-13T00:15:26Z</dc:date>
    </item>
  </channel>
</rss>

