<?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 joining 2 tables - inner join? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/joining-2-tables-inner-join/m-p/187258#M51012</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I'd use Exists(), although Joining should work as well:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;[TABLE A]:LOADissue_date ,date(MonthStart([issue_date]), 'MMM-YY') as [Final issue date],issue_valueFROM TableA.qvd (qvd); [Financial Dates]:LOAD Date as [Final issue date], Month, [Month Year], Quarter, YearFROM [Financial Qtr and Years .xls] WHERE EXISTS([Final issue date], Date);&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Mar 2011 14:15:04 GMT</pubDate>
    <dc:creator>Miguel_Angel_Baeyens</dc:creator>
    <dc:date>2011-03-29T14:15:04Z</dc:date>
    <item>
      <title>joining 2 tables - inner join?</title>
      <link>https://community.qlik.com/t5/QlikView/joining-2-tables-inner-join/m-p/187255#M51009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, i have 2 tables TABLE A + FINANCIAL DATES.&lt;/P&gt;&lt;P&gt;I want to create a join so that i can include &lt;B&gt;all&lt;/B&gt; 'Table A' fields and only &lt;B&gt;selected&lt;/B&gt; fields from table 'FINANCIAL DATES'. Where T&lt;I&gt;ABLE A.Final issue date&lt;/I&gt; = &lt;I&gt;Financial Dates.Final issue date&lt;/I&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My script is below&lt;/P&gt;&lt;P&gt;---------------&lt;/P&gt;&lt;P&gt;[TABLE A]:&lt;BR /&gt;LOAD&lt;BR /&gt;issue_date ,&lt;BR /&gt;date(MonthStart([issue_date]), 'MMM-YY') as [Final issue date],&lt;BR /&gt;issue_value&lt;BR /&gt;FROM TableA.qvd;&lt;BR /&gt;&lt;BR /&gt;[Financial Dates]:&lt;BR /&gt;LOAD Date as [Final issue date],&lt;BR /&gt; Month,&lt;BR /&gt; [Month Year],&lt;BR /&gt; Quarter,&lt;BR /&gt; Year&lt;BR /&gt;FROM [Financial Qtr and Years .xls];&lt;/P&gt;&lt;P&gt;-------------------------&lt;/P&gt;&lt;P&gt;any ideas how i can amend my script above to achieve this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Mar 2011 14:08:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/joining-2-tables-inner-join/m-p/187255#M51009</guid>
      <dc:creator />
      <dc:date>2011-03-29T14:08:34Z</dc:date>
    </item>
    <item>
      <title>joining 2 tables - inner join?</title>
      <link>https://community.qlik.com/t5/QlikView/joining-2-tables-inner-join/m-p/187256#M51010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are looking for a join of Table1 and only associated values in Table2, then you are looking for a left join(Table1) in front of the load statement of Table2.&lt;/P&gt;&lt;P&gt;Inner join is going to result in creating a table that only contains intersecting values of Table1 &amp;amp; Table2. If that's what you're looking for, then...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Mar 2011 14:11:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/joining-2-tables-inner-join/m-p/187256#M51010</guid>
      <dc:creator />
      <dc:date>2011-03-29T14:11:50Z</dc:date>
    </item>
    <item>
      <title>joining 2 tables - inner join?</title>
      <link>https://community.qlik.com/t5/QlikView/joining-2-tables-inner-join/m-p/187257#M51011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;This should do the trick:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;[TABLE A]:&lt;BR /&gt;LOAD&lt;BR /&gt;issue_date ,&lt;BR /&gt;date(MonthStart([issue_date]), 'MMM-YY') as [Final issue date],&lt;BR /&gt;issue_value&lt;BR /&gt;FROM TableA.qvd;&lt;BR /&gt;&lt;BR /&gt;LEFT Join ([TABLE A])&lt;BR /&gt;LOAD Date as [Final issue date],&lt;BR /&gt; Month,&lt;BR /&gt; [Month Year],&lt;BR /&gt; Quarter,&lt;BR /&gt; Year&lt;BR /&gt;FROM [Financial Qtr and Years .xls];&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Mar 2011 14:14:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/joining-2-tables-inner-join/m-p/187257#M51011</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2011-03-29T14:14:19Z</dc:date>
    </item>
    <item>
      <title>joining 2 tables - inner join?</title>
      <link>https://community.qlik.com/t5/QlikView/joining-2-tables-inner-join/m-p/187258#M51012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I'd use Exists(), although Joining should work as well:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;[TABLE A]:LOADissue_date ,date(MonthStart([issue_date]), 'MMM-YY') as [Final issue date],issue_valueFROM TableA.qvd (qvd); [Financial Dates]:LOAD Date as [Final issue date], Month, [Month Year], Quarter, YearFROM [Financial Qtr and Years .xls] WHERE EXISTS([Final issue date], Date);&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Mar 2011 14:15:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/joining-2-tables-inner-join/m-p/187258#M51012</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-03-29T14:15:04Z</dc:date>
    </item>
  </channel>
</rss>

