<?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 Issue with Multiple Overlapping Joins in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Issue-with-Multiple-Overlapping-Joins/m-p/275899#M709483</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In that case simply load the name and Jan for the first load and just the name and first month for each join. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Oct 2011 15:55:48 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-10-26T15:55:48Z</dc:date>
    <item>
      <title>Issue with Multiple Overlapping Joins</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-Multiple-Overlapping-Joins/m-p/275896#M709480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm new to qlikview and have found myself stumped in one of my projects.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to join 3 tables that include a list of names and data recorded by month.&amp;nbsp; I've included and example below.&amp;nbsp; The issue I'm having is that the list of names aren't the same every month and when Smith is skipped in TableB it creates a null value in Apr that prevents the record in TableC from being joined to Table A.&amp;nbsp; This creates an unwanted duplicate record for Smith.&amp;nbsp; Is there a way to prevent this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TableA:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Name, Jan, Feb, Mar&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Abe, 2, 3, 5&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Smith, 5, 2, 6&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Joe, 3, 2, 4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sal, 4, 3, 1&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TableB:&lt;/P&gt;&lt;P&gt;Outer Join (TableA)&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Name, Feb, Mar, Apr&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Abe, 3, 5, 4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Joe, 2, 4, 4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sal, 3, 1, 3&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TableC:&lt;/P&gt;&lt;P&gt;Outer Join (TableA)&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Name, Mar, Apr, May&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Abe, 5, 4, 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Smith, 6, 3, 3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Joe, 4, 4, 4&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2011 00:01:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-Multiple-Overlapping-Joins/m-p/275896#M709480</guid>
      <dc:creator />
      <dc:date>2011-10-26T00:01:05Z</dc:date>
    </item>
    <item>
      <title>Issue with Multiple Overlapping Joins</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-Multiple-Overlapping-Joins/m-p/275897#M709481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;QlikView will use fields that are common to both tables to join the tables so in the second join three columns will be used, Name, Mar and Apr. Since a value is missing (Smith, 6, 3 does not match Smith, 6, null) an new row is added. Perhaps you want something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TableA:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Name, Jan, Feb, Mar&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Abe, 2, 3, 5&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Smith, 5, 2, 6&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Joe, 3, 2, 4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sal, 4, 3, 1&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TableB:&lt;/P&gt;&lt;P&gt;Outer Join (TableA)&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Name, Apr&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Abe, 4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Joe, 4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sal, 3&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TableC:&lt;/P&gt;&lt;P&gt;Outer Join (TableA)&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Name, May&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Abe, 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Smith, 3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Joe, 4&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2011 00:27:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-Multiple-Overlapping-Joins/m-p/275897#M709481</guid>
      <dc:creator />
      <dc:date>2011-10-26T00:27:18Z</dc:date>
    </item>
    <item>
      <title>Issue with Multiple Overlapping Joins</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-Multiple-Overlapping-Joins/m-p/275898#M709482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would but there's a problem when new names are added to the list.&amp;nbsp; If I add a name in TableB and only add Apr to TableA I'll be missing the data for Feb and Mar.&amp;nbsp; Let me add Mary to the script so you can see what I mean.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TableA:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Name, Jan, Feb, Mar&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Abe, 2, 3, 5&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Smith, 5, 2, 6&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Joe, 3, 2, 4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sal, 4, 3, 1&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TableB:&lt;/P&gt;&lt;P&gt;Outer Join (TableA)&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Name, Feb, Mar, Apr&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Abe, 3, 5, 4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Joe, 2, 4, 4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sal, 3, 1, 3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Mary, 4, 1, 2&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TableC:&lt;/P&gt;&lt;P&gt;Outer Join (TableA)&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Name, Mar, Apr, May&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Abe, 5, 4, 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Smith, 6, 3, 3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Joe, 4, 4, 4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Mary, 1, 2, 3&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2011 00:36:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-Multiple-Overlapping-Joins/m-p/275898#M709482</guid>
      <dc:creator />
      <dc:date>2011-10-26T00:36:29Z</dc:date>
    </item>
    <item>
      <title>Issue with Multiple Overlapping Joins</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-Multiple-Overlapping-Joins/m-p/275899#M709483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In that case simply load the name and Jan for the first load and just the name and first month for each join. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2011 15:55:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-Multiple-Overlapping-Joins/m-p/275899#M709483</guid>
      <dc:creator />
      <dc:date>2011-10-26T15:55:48Z</dc:date>
    </item>
    <item>
      <title>Issue with Multiple Overlapping Joins</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-Multiple-Overlapping-Joins/m-p/275900#M709484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'd still have the problem with nulls popping up and messing up the joins if I did it that way.&amp;nbsp; Is there no way to remove the nulls or replace them somehow?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2011 16:35:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-Multiple-Overlapping-Joins/m-p/275900#M709484</guid>
      <dc:creator />
      <dc:date>2011-10-26T16:35:31Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Multiple Overlapping Joins</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-Multiple-Overlapping-Joins/m-p/275901#M709485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please check the attachment. Does it work for you?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2011 17:17:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-Multiple-Overlapping-Joins/m-p/275901#M709485</guid>
      <dc:creator />
      <dc:date>2011-10-26T17:17:13Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Multiple Overlapping Joins</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-Multiple-Overlapping-Joins/m-p/275902#M709486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That works, but is there a way to return a null instead of a zero when all values are null?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2011 17:36:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-Multiple-Overlapping-Joins/m-p/275902#M709486</guid>
      <dc:creator />
      <dc:date>2011-10-26T17:36:24Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Multiple Overlapping Joins</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-Multiple-Overlapping-Joins/m-p/275903#M709487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Updated accordingly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2011 17:41:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-Multiple-Overlapping-Joins/m-p/275903#M709487</guid>
      <dc:creator />
      <dc:date>2011-10-26T17:41:24Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Multiple Overlapping Joins</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-Multiple-Overlapping-Joins/m-p/275904#M709488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The expressions don't work but I think it's because there's more then just numbers and nulls in the original list.&amp;nbsp; There's also '...' and 'N/A' to designate certain types of nulls.&amp;nbsp; I could make a bigger if statement to account for that, but on further thought I'm just going to chop a couple months off of the second load so joining the third table works correctly.&amp;nbsp; I lose a little bit of data in the short term, but in the long term it won't matter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for all the help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2011 18:18:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-Multiple-Overlapping-Joins/m-p/275904#M709488</guid>
      <dc:creator />
      <dc:date>2011-10-26T18:18:39Z</dc:date>
    </item>
  </channel>
</rss>

