<?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: LEFT JOIN on existing tables in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/LEFT-JOIN-on-existing-tables/m-p/527791#M687516</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you please load your document with error? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 27 Dec 2013 05:53:40 GMT</pubDate>
    <dc:creator>MK_QSL</dc:creator>
    <dc:date>2013-12-27T05:53:40Z</dc:date>
    <item>
      <title>LEFT JOIN on existing tables</title>
      <link>https://community.qlik.com/t5/QlikView/LEFT-JOIN-on-existing-tables/m-p/527788#M687513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have existing List Tables: portfolio, revenue 2011, revenue 2012, revenue 2013. I wish to left join portfolio with the other 3. I want the resulting table be called RevenueByPortfolio. So I am scripting:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RevenueByPortfolio:&lt;/P&gt;&lt;P&gt;SELECT * FROM Portfolio ;&lt;/P&gt;&lt;P&gt;LEFT JOIN SELECT * FROM Revenue 2013 ;&lt;/P&gt;&lt;P&gt;LEFT JOIN SELECT * FROM Revenue 2012 ;&lt;/P&gt;&lt;P&gt;LEFT JOIN SELECT * FROM Revenue 2011 ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First compilation error is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Connection to OBDC failed&lt;/P&gt;&lt;P&gt;RevenueByPortfolio:&lt;/P&gt;&lt;P&gt;SELECT * FROM Portfolio ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is RevenueByPortfolio: in my script ? I understood this is the way to name resulting table RevenueByPortfolio. How to do if not this way ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, I have similar connection errors with other statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to left join existing List Tables ? Would you have some full script at hands as an example to perform such thing ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Dec 2013 22:50:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/LEFT-JOIN-on-existing-tables/m-p/527788#M687513</guid>
      <dc:creator />
      <dc:date>2013-12-26T22:50:54Z</dc:date>
    </item>
    <item>
      <title>Re: LEFT JOIN on existing tables</title>
      <link>https://community.qlik.com/t5/QlikView/LEFT-JOIN-on-existing-tables/m-p/527789#M687514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Connection error is due to your connection failed....&lt;/P&gt;&lt;P&gt;Please use test connection while making ODBC connection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load Portfolio and Other 3 tables.&lt;/P&gt;&lt;P&gt;Portfolio:&lt;/P&gt;&lt;P&gt;Load * From TableName;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Revenue 2013]:&lt;/P&gt;&lt;P&gt;Load * from Revenue2013TableName;&lt;/P&gt;&lt;P&gt;Concatenate&lt;/P&gt;&lt;P&gt;Load * from Revenue2012TableName&lt;/P&gt;&lt;P&gt;Concatenate&lt;/P&gt;&lt;P&gt;Load * From Revenue2011TableName&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;"&gt;RevenueByPortfolio:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Left Join (Portfolio) Load * Resident [Revenue 2013];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&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;"&gt;Drop Tables Portfolio, [Revenue 2013];&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;"&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;"&gt;Hope this help you...&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Dec 2013 23:03:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/LEFT-JOIN-on-existing-tables/m-p/527789#M687514</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2013-12-26T23:03:20Z</dc:date>
    </item>
    <item>
      <title>Re: LEFT JOIN on existing tables</title>
      <link>https://community.qlik.com/t5/QlikView/LEFT-JOIN-on-existing-tables/m-p/527790#M687515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think this will do. But I cannot load table that are already in the QLikView document. Loaded table with Load is sought for in the directory where the QLikView document is saved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;more precisely, i have already loaded Portfolio, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Revenue2011TableName&lt;/SPAN&gt;, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Revenue2012TableName&lt;/SPAN&gt;, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Revenue2013TableName&lt;/SPAN&gt;. How can I load table that are already in the document ? Should i use another combo box item as connection ODBC ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Dec 2013 04:38:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/LEFT-JOIN-on-existing-tables/m-p/527790#M687515</guid>
      <dc:creator />
      <dc:date>2013-12-27T04:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: LEFT JOIN on existing tables</title>
      <link>https://community.qlik.com/t5/QlikView/LEFT-JOIN-on-existing-tables/m-p/527791#M687516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you please load your document with error? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Dec 2013 05:53:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/LEFT-JOIN-on-existing-tables/m-p/527791#M687516</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2013-12-27T05:53:40Z</dc:date>
    </item>
  </channel>
</rss>

