<?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: Outer Join? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/890000#M995541</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The names in Qlikview are not the same as SQL. These two fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[SMI_Collateral.BusinessDate]&lt;/P&gt;&lt;P&gt;[BusinessDates_temp.BusinessDate]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;are not related in any way - note the square brackets. These are not qualified names as in SQL, they are just different names. And QV field names are case sensitive, so FieldA and fielda are different fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also this bit of code does not make sense&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;date($(PositionDate),'DD-MM-YYYY')as %Key_BusinessDate, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;amp;'_'&amp;amp; %Key_AccountCode as %Key_BusinessDate_AccountCode&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I think you mean&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;EM style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;date($(PositionDate),'DD-MM-YYYY') as %Key_BusinessDate,&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;EM style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;date($(PositionDate),'DD-MM-YYYY') &lt;/EM&gt;&amp;amp;'_'&amp;amp; %Key_AccountCode as %Key_BusinessDate_AccountCode&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Jun 2015 09:40:03 GMT</pubDate>
    <dc:creator>jonathandienst</dc:creator>
    <dc:date>2015-06-24T09:40:03Z</dc:date>
    <item>
      <title>Outer Join?</title>
      <link>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/889997#M995538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am quite new with QV. I have the following situation where the &lt;STRONG style="font-size: 12pt;"&gt;BusinessDates_temp.BusinessDate&lt;/STRONG&gt; is not recognised by QV. It used to be like the below but I don't want to hardcode to one date PositionDate, I need a join of all possible Date values from SMI_Collateral. I guess I am trying to make it look like SQL! Any ideas how it should be done?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;date($(PositionDate),'DD-MM-YYYY')as %Key_BusinessDate, &amp;amp;'_'&amp;amp; %Key_AccountCode as %Key_BusinessDate_AccountCode&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;BusinessDates_temp:&lt;BR /&gt;load distinct SMI_Collateral.BusinessDate&lt;BR /&gt;Resident&lt;BR /&gt;SMI_Collateral;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Position_Map_temp:&lt;BR /&gt;Outer Join ( BusinessDates_temp)&lt;BR /&gt;LOAD&lt;BR /&gt;&lt;SPAN style="font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;STRONG style="font-size: 12pt;"&gt;BusinessDates_temp.BusinessDate&lt;/STRONG&gt; &amp;amp;'_'&amp;amp; %Key_AccountCode as %Key_BusinessDate_AccountCode,&lt;BR /&gt; //Key_BusinessDate_AccountCode ,&lt;BR /&gt; %Key_AccountCode,&lt;BR /&gt; [SMI_Account-1.AccountExternalCode] as %Key_AccountExternalCode,&lt;BR /&gt; SMI_Account.AgreementCode AS %Key_Agreement&lt;BR /&gt;RESIDENT&lt;BR /&gt; SMI_Account;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Panos.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2015 08:22:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/889997#M995538</guid>
      <dc:creator />
      <dc:date>2015-06-24T08:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: Outer Join?</title>
      <link>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/889998#M995539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Qlikview will Outer Join on any fields with the same Name between the two tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You do not have any common fields between &lt;BR /&gt;BusinessDates_temp&lt;/P&gt;&lt;P&gt;and the Newly loaded&lt;/P&gt;&lt;P&gt;Position_Map_temp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so not sure what you trying to achieve?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you only what records in Position_Map_temp that have dates in another table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try&lt;/P&gt;&lt;P&gt;Where Exists(BusinessDate) or where Exists(theFieldtoCheck,theValuetoCheckExists)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2015 08:58:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/889998#M995539</guid>
      <dc:creator>sgrice</dc:creator>
      <dc:date>2015-06-24T08:58:32Z</dc:date>
    </item>
    <item>
      <title>Re: Outer Join?</title>
      <link>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/889999#M995540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Outer join condition:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;H1&gt;&lt;A name="kanchor933"&gt;&lt;/A&gt;&lt;SPAN style="color: #ffffff; background-color: #3399ff;"&gt;Outer&lt;/SPAN&gt;&lt;/H1&gt;&lt;P&gt;The explicit &lt;A class="MCXref_0"&gt;&lt;EM style="color: #ffffff; background-color: #3399ff;"&gt;Join&lt;/EM&gt;&lt;/A&gt; prefix can be preceded by the prefix &lt;SPAN style="color: #ffffff; background-color: #3399ff;"&gt;outer&lt;/SPAN&gt; in order to specify an &lt;SPAN style="color: #ffffff; background-color: #3399ff;"&gt;outer join&lt;/SPAN&gt;. In an &lt;SPAN style="color: #ffffff; background-color: #3399ff;"&gt;outer join&lt;/SPAN&gt; all combinations between the two tables are generated. The resulting table will thus contain combinations of field values from the raw data tables where the linking field values are represented in one or both tables. The &lt;SPAN style="color: #ffffff; background-color: #3399ff;"&gt;outer&lt;/SPAN&gt; keyword is optional. &lt;/P&gt;&lt;P class="syntax"&gt;&lt;SPAN style="color: #ffffff; background-color: #3399ff;"&gt;outer join&lt;/SPAN&gt; [ &lt;SPAN class="Bold"&gt;(&lt;/SPAN&gt;tablename &lt;SPAN class="Bold"&gt;)&lt;/SPAN&gt;&lt;SPAN class="Italic"&gt; ](loadstatement |selectstatement )&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="example"&gt;Example:&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P class="Bold"&gt;Table1 &lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;A&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;B&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;aa&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;cc&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;ee&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P class="Bold"&gt;Table2 &lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;A&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;C&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;xx&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;4&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;yy&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="Code"&gt;select * from table1;&lt;/P&gt;&lt;P class="Code"&gt;&lt;SPAN style="color: #ffffff; background-color: #3399ff;"&gt;join&lt;/SPAN&gt; select * from table2;&lt;/P&gt;&lt;P&gt;OR&lt;/P&gt;&lt;P class="Code"&gt;select * from table1;&lt;/P&gt;&lt;P class="Code"&gt;&lt;SPAN style="color: #ffffff; background-color: #3399ff;"&gt;outer join&lt;/SPAN&gt; select * from table2;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P class="Bold"&gt;&lt;SPAN style="color: #ffffff; background-color: #3399ff;"&gt;Joined&lt;/SPAN&gt; table &lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="center" class="Bold" style="text-align: center;"&gt;A &lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" class="Bold" style="text-align: center;"&gt;B &lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" class="Bold" style="text-align: center;"&gt;C &lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="center" class="Bold" style="text-align: center;"&gt;1 &lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" class="Bold" style="text-align: center;"&gt;aa &lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" class="Bold" style="text-align: center;"&gt;xx &lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="center" class="Bold" style="text-align: center;"&gt;2 &lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" class="Bold" style="text-align: center;"&gt;cc &lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" class="Bold" style="text-align: center;"&gt;- &lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="center" class="Bold" style="text-align: center;"&gt;3 &lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" class="Bold" style="text-align: center;"&gt;ee &lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" class="Bold" style="text-align: center;"&gt;- &lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="center" class="Bold" style="text-align: center;"&gt;4 &lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" class="Bold" style="text-align: center;"&gt;- &lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" class="Bold" style="text-align: center;"&gt;yy&amp;nbsp; &lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2015 09:04:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/889999#M995540</guid>
      <dc:creator>vardhancse</dc:creator>
      <dc:date>2015-06-24T09:04:56Z</dc:date>
    </item>
    <item>
      <title>Re: Outer Join?</title>
      <link>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/890000#M995541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The names in Qlikview are not the same as SQL. These two fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[SMI_Collateral.BusinessDate]&lt;/P&gt;&lt;P&gt;[BusinessDates_temp.BusinessDate]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;are not related in any way - note the square brackets. These are not qualified names as in SQL, they are just different names. And QV field names are case sensitive, so FieldA and fielda are different fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also this bit of code does not make sense&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;date($(PositionDate),'DD-MM-YYYY')as %Key_BusinessDate, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;amp;'_'&amp;amp; %Key_AccountCode as %Key_BusinessDate_AccountCode&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I think you mean&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;EM style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;date($(PositionDate),'DD-MM-YYYY') as %Key_BusinessDate,&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;EM style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;date($(PositionDate),'DD-MM-YYYY') &lt;/EM&gt;&amp;amp;'_'&amp;amp; %Key_AccountCode as %Key_BusinessDate_AccountCode&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2015 09:40:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/890000#M995541</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-06-24T09:40:03Z</dc:date>
    </item>
    <item>
      <title>Re: Outer Join?</title>
      <link>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/890001#M995542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK let me rephrase it then. I have 2 tables A, B and they are linked with column C3. I would like to produce a join between the two tables where one resulting column will be the concatenation of A.Col1 and B.Col2 . Is that possible or do I need to save into a table and get the concatenation from a second separate step. Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2015 10:38:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/890001#M995542</guid>
      <dc:creator />
      <dc:date>2015-06-25T10:38:50Z</dc:date>
    </item>
  </channel>
</rss>

