<?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: How to join 2 tables in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-join-2-tables/m-p/955698#M328455</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Than what &lt;A _jive_internal="true" href="https://community.qlik.com/people/petter-s"&gt;Petter&lt;/A&gt;‌ has provided should work for you well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Oct 2015 09:07:44 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2015-10-12T09:07:44Z</dc:date>
    <item>
      <title>How to join 2 tables</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-join-2-tables/m-p/955694#M328451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need help to join 2 tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Vehicle&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Date&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table2&lt;/P&gt;&lt;P&gt;Vehicle&lt;/P&gt;&lt;P&gt;Date&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the format in Table 1 is a Vehicle ID&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in Table 2 its Vehicle ID and OwnerID as Vehicle (done by Server Admin)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so data in Table 1 looks like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1234&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1/1/2015&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and table 2 its&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1_1234&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1/1/2015&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want the end result to join these 2 tables and show as table 2 so all table 1 links on Vehicle but also shows OwnerID with Vehicle.&lt;/P&gt;&lt;P&gt;Both Tables have same Vehicle data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Oct 2015 08:41:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-join-2-tables/m-p/955694#M328451</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-12T08:41:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to join 2 tables</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-join-2-tables/m-p/955695#M328452</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vehicles:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Vehicle AS Vehicle_ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date AS VehicleDate&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xxxxxx;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Owners:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SubField( Vehicle , '_' , 2 ) AS Vehicle_ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SubField( Vehicle , '_' , 1 ) AS Owner,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date AS OwnerDate&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; yyyyyy;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Will make a connection (key) between the two tables on the &lt;STRONG&gt;Vehicle_ID&lt;/STRONG&gt; - effectively working as a join in the Associate Database of QlikView without joining...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Oct 2015 08:53:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-join-2-tables/m-p/955695#M328452</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-10-12T08:53:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to join 2 tables</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-join-2-tables/m-p/955696#M328453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does owner ID and vehicle are always linked to each other with a underscore between them?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Oct 2015 09:01:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-join-2-tables/m-p/955696#M328453</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-10-12T09:01:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to join 2 tables</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-join-2-tables/m-p/955697#M328454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes They are.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Oct 2015 09:03:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-join-2-tables/m-p/955697#M328454</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-12T09:03:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to join 2 tables</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-join-2-tables/m-p/955698#M328455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Than what &lt;A _jive_internal="true" href="https://community.qlik.com/people/petter-s"&gt;Petter&lt;/A&gt;‌ has provided should work for you well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Oct 2015 09:07:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-join-2-tables/m-p/955698#M328455</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-10-12T09:07:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to join 2 tables</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-join-2-tables/m-p/955699#M328456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Petter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure, but can i get this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;SubField( Vehicle , '_' , 1 ) AS Owner, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;to then be added to table 1?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What i wanted was &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Vehicles:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Owner and &lt;/SPAN&gt;Vehicle AS Vehicle_ID,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date AS VehicleDate&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xxxxxx;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Oct 2015 09:18:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-join-2-tables/m-p/955699#M328456</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-12T09:18:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to join 2 tables</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-join-2-tables/m-p/955700#M328457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, just tested this and all is working properly!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks Petter &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Oct 2015 09:31:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-join-2-tables/m-p/955700#M328457</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-12T09:31:10Z</dc:date>
    </item>
  </channel>
</rss>

