<?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 Easy Join Issue in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Easy-Join-Issue/m-p/201685#M59672</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I'd been trying to join a few tables &amp;amp; it just doesn't work propertly!&lt;/P&gt;&lt;P&gt;I've this main table of User and their Acces and on the other hand, I've a file with the password. So, i want to join every file with the password with the main table. It only works with the first file, the rest, it's like not exists.&lt;/P&gt;&lt;P&gt;Here's the code:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;ACCESOS:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt; ACCESS, USERNAME&lt;BR /&gt; ADMIN, ADMIN&lt;BR /&gt; ADMIN, SA&lt;BR /&gt; USER, SA&lt;BR /&gt; USER, AA&lt;BR /&gt; USER, BB&lt;BR /&gt; USER, CC&lt;BR /&gt;];&lt;BR /&gt;&lt;BR /&gt;LEFT JOIN (ACCESOS) Load&lt;BR /&gt; USERNAME,&lt;BR /&gt; [PASSWORD]&lt;BR /&gt;FROM SA.xls (biff, embedded labels, table is [Sheet1$]);&lt;BR /&gt;&lt;BR /&gt;LEFT JOIN (ACCESOS) Load&lt;BR /&gt; USERNAME,&lt;BR /&gt; [PASSWORD]&lt;BR /&gt;FROM ADMIN.xls (biff, embedded labels, table is [Sheet1$]);&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;LEFT JOIN (ACCESOS) Load&lt;BR /&gt; USERNAME,&lt;BR /&gt; [PASSWORD]&lt;BR /&gt;FROM BB.xls (biff, embedded labels, table is [Sheet1$]);&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I don't know WHY if i'm writing (ACCESOS) don't join it, i really hope isn't something about left, right, outer (i'll be ashame!)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thxs in advance for your help! i'm confident that's quite easy to resolve! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Jan 2010 15:38:04 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-01-05T15:38:04Z</dc:date>
    <item>
      <title>Easy Join Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Easy-Join-Issue/m-p/201685#M59672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I'd been trying to join a few tables &amp;amp; it just doesn't work propertly!&lt;/P&gt;&lt;P&gt;I've this main table of User and their Acces and on the other hand, I've a file with the password. So, i want to join every file with the password with the main table. It only works with the first file, the rest, it's like not exists.&lt;/P&gt;&lt;P&gt;Here's the code:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;ACCESOS:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt; ACCESS, USERNAME&lt;BR /&gt; ADMIN, ADMIN&lt;BR /&gt; ADMIN, SA&lt;BR /&gt; USER, SA&lt;BR /&gt; USER, AA&lt;BR /&gt; USER, BB&lt;BR /&gt; USER, CC&lt;BR /&gt;];&lt;BR /&gt;&lt;BR /&gt;LEFT JOIN (ACCESOS) Load&lt;BR /&gt; USERNAME,&lt;BR /&gt; [PASSWORD]&lt;BR /&gt;FROM SA.xls (biff, embedded labels, table is [Sheet1$]);&lt;BR /&gt;&lt;BR /&gt;LEFT JOIN (ACCESOS) Load&lt;BR /&gt; USERNAME,&lt;BR /&gt; [PASSWORD]&lt;BR /&gt;FROM ADMIN.xls (biff, embedded labels, table is [Sheet1$]);&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;LEFT JOIN (ACCESOS) Load&lt;BR /&gt; USERNAME,&lt;BR /&gt; [PASSWORD]&lt;BR /&gt;FROM BB.xls (biff, embedded labels, table is [Sheet1$]);&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I don't know WHY if i'm writing (ACCESOS) don't join it, i really hope isn't something about left, right, outer (i'll be ashame!)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thxs in advance for your help! i'm confident that's quite easy to resolve! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 15:38:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Easy-Join-Issue/m-p/201685#M59672</guid>
      <dc:creator />
      <dc:date>2010-01-05T15:38:04Z</dc:date>
    </item>
    <item>
      <title>Easy Join Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Easy-Join-Issue/m-p/201686#M59673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;When you perform the first join the resulting table will have 3 columns (ACCESS, USERNAME, PASSWORD).&lt;BR /&gt;Then, when the second join is performed you already have the password field in the ACCESOS-table. So the join is done on both the USERNAME &amp;amp; PASSWORD field. That's why is doesn't work.&lt;BR /&gt;Try somthing like this instead:&lt;BR /&gt;tmpPasswords:&lt;BR /&gt;load USERNAME, PASSWORD from SA.xls .........;&lt;BR /&gt;load USERNAME, PASSWORD from ADMIN.xls ......;&lt;BR /&gt;load USERNAME, PASSWORD from BB.xls .....;&lt;BR /&gt;left join(ACCESOS) load * from tmpPasswords;&lt;BR /&gt;drop table tmpPasswords;&lt;BR /&gt;&lt;BR /&gt;This you concatenate all the password-files into a single table before you do your join. That shold work.&lt;/P&gt;&lt;P&gt;/Fredrik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 16:02:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Easy-Join-Issue/m-p/201686#M59673</guid>
      <dc:creator />
      <dc:date>2010-01-05T16:02:41Z</dc:date>
    </item>
    <item>
      <title>Easy Join Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Easy-Join-Issue/m-p/201687#M59674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Fredrik, thx u for your answer.&lt;/P&gt;&lt;P&gt;I did what u just told me, and it gave me an error with &lt;I&gt;tmpPasswords&lt;/I&gt;, that say:&lt;/P&gt;&lt;P&gt;That the file mypath/&lt;I&gt;tmpPasswords&lt;/I&gt; it cannot be open and it appear, too, the line where the join it'd been done&lt;I&gt;: left join (ACCESOS) load * from tmpPasswords;&lt;BR /&gt;&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why u think this is happening?&lt;/P&gt;&lt;P&gt;Thxs!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 16:25:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Easy-Join-Issue/m-p/201687#M59674</guid>
      <dc:creator />
      <dc:date>2010-01-05T16:25:23Z</dc:date>
    </item>
    <item>
      <title>Easy Join Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Easy-Join-Issue/m-p/201688#M59675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe the opposite will do the trick??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;ACCESOS:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt; ACCESS, USERNAME&lt;BR /&gt; ADMIN, ADMIN&lt;BR /&gt; ADMIN, SA&lt;BR /&gt; USER, SA&lt;BR /&gt; USER, AA&lt;BR /&gt; USER, BB&lt;BR /&gt; USER, CC&lt;BR /&gt;];&lt;BR /&gt;LEFT JOIN (ACCESOS)&lt;BR /&gt;load USERNAME, PASSWORD from SA.xls .........;&lt;BR /&gt;load USERNAME, PASSWORD from ADMIN.xls ......;&lt;BR /&gt;load USERNAME, PASSWORD from BB.xls .....;&lt;BR /&gt;left join(ACCESOS) load * from tmpPasswords;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;Did not try this but might be something&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 16:29:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Easy-Join-Issue/m-p/201688#M59675</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-01-05T16:29:39Z</dc:date>
    </item>
    <item>
      <title>Easy Join Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Easy-Join-Issue/m-p/201689#M59676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the last left join was accidentally copied ... this should not be here!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 16:30:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Easy-Join-Issue/m-p/201689#M59676</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-01-05T16:30:53Z</dc:date>
    </item>
    <item>
      <title>Easy Join Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Easy-Join-Issue/m-p/201690#M59677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi A Fuchten,&lt;/P&gt;&lt;P&gt;I really did not understand why to put the left join (ACCESOS) first, but I tried &amp;amp; It doesn't work. It gave me an error for that.&lt;/P&gt;&lt;P&gt;Any idea why the error is in the recomendation of Friedrik?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 16:41:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Easy-Join-Issue/m-p/201690#M59677</guid>
      <dc:creator />
      <dc:date>2010-01-05T16:41:15Z</dc:date>
    </item>
    <item>
      <title>Easy Join Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Easy-Join-Issue/m-p/201691#M59678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This thread is a duplicate of this other one, started yesterday: http://community.qlik.com/forums/p/24106/92302.aspx#92302&lt;/P&gt;&lt;P&gt;The short answer is that you should not be executing a separate join for each spreadsheet. Load all of the spreadsheets into one table, then left join that resident table to the Access table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 17:03:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Easy-Join-Issue/m-p/201691#M59678</guid>
      <dc:creator>msteedle</dc:creator>
      <dc:date>2010-01-05T17:03:29Z</dc:date>
    </item>
    <item>
      <title>Easy Join Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Easy-Join-Issue/m-p/201692#M59679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michael,&lt;/P&gt;&lt;P&gt;I tried already to load all the spreadsheets into one table and then left join it with the access table, but I got an error with that.&lt;/P&gt;&lt;P&gt;I posted. Can u help me with that?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 17:11:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Easy-Join-Issue/m-p/201692#M59679</guid>
      <dc:creator />
      <dc:date>2010-01-05T17:11:59Z</dc:date>
    </item>
    <item>
      <title>Easy Join Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Easy-Join-Issue/m-p/201693#M59680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I made a mistake in my first post. The correct code for the join should be:&lt;/P&gt;&lt;P&gt;left join(ACCESOS) load * resident tmpPasswords;&lt;BR /&gt;&lt;BR /&gt;That should do the trick.&lt;/P&gt;&lt;P&gt;/Fredrik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 17:15:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Easy-Join-Issue/m-p/201693#M59680</guid>
      <dc:creator />
      <dc:date>2010-01-05T17:15:50Z</dc:date>
    </item>
    <item>
      <title>Easy Join Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Easy-Join-Issue/m-p/201694#M59681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;I already got the solution to the last problem, and the error was because of the &lt;B&gt;from&lt;/B&gt; statement in the left join clause, i change it for &lt;B&gt;resident&lt;/B&gt; (As michael said) and it works as it should.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thxs to everyone.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 17:17:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Easy-Join-Issue/m-p/201694#M59681</guid>
      <dc:creator />
      <dc:date>2010-01-05T17:17:16Z</dc:date>
    </item>
    <item>
      <title>Easy Join Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Easy-Join-Issue/m-p/201695#M59682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yES!&lt;/P&gt;&lt;P&gt;tHnx you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 17:21:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Easy-Join-Issue/m-p/201695#M59682</guid>
      <dc:creator />
      <dc:date>2010-01-05T17:21:11Z</dc:date>
    </item>
  </channel>
</rss>

