<?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 Link table issue in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Link-table-issue/m-p/256803#M707233</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chris,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's been a while ago, but I still have an issue with my link table. The issue I described at first is solved, thanks to your answer, but what I miss right now are the customers who don't have any transactions. What I would like to do is show all the customers per salesrep, by using the Link table. Due to the left join, I can't get all the customers linked to the salesrep because there are no transactions. I strongly hope you do have any options for me. Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Henco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 01 May 2012 08:09:26 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2012-05-01T08:09:26Z</dc:date>
    <item>
      <title>Link table issue</title>
      <link>https://community.qlik.com/t5/QlikView/Link-table-issue/m-p/256799#M707229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am struggling with a (for me) difficult issue. It is about a link table which I use in my document. &lt;/P&gt;&lt;P&gt;To explain the issue, I have made a very simple and basic example. This demo file is attached to this issue, so I hope someone can explain to me the way it works. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is:&lt;/P&gt;&lt;P&gt;A salesrep is linked to a customer, and a customer has transactions. To bring this (and much more tables, thats why I use a link table here) together I use a link table. In my opinion all the joins are right, but when I make a straight table which gives me: Customername, Salesrep and Transactionamount, I get confused because there is no salesrep linked to the customer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone please show me, what do I do wrong?&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Henco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jan 2012 14:09:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Link-table-issue/m-p/256799#M707229</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-01-06T14:09:00Z</dc:date>
    </item>
    <item>
      <title>Link table issue</title>
      <link>https://community.qlik.com/t5/QlikView/Link-table-issue/m-p/256800#M707230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Edit: my goal here is to show the revenue per Salesrep.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jan 2012 14:24:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Link-table-issue/m-p/256800#M707230</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-01-06T14:24:54Z</dc:date>
    </item>
    <item>
      <title>Link table issue</title>
      <link>https://community.qlik.com/t5/QlikView/Link-table-issue/m-p/256801#M707231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you are adding the RepID to the linkTemp you are concatenating. This does not create an association with the&amp;nbsp; transactions. If you look at your link table data you will see what I mean. I suggest using a left join to the linked table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LinkTemp:&lt;/P&gt;&lt;P&gt;LOAD DISTINCT&lt;/P&gt;&lt;P&gt;GL_ID&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;as %GL_ID,&lt;/P&gt;&lt;P&gt;Customer_ID&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;as %CUSTOMER_ID,&lt;/P&gt;&lt;P&gt;Transdate&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;as DateKey&lt;/P&gt;&lt;P&gt;RESIDENT TRANSACTION;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//CONCATENATE&lt;/P&gt;&lt;P&gt;Left Join(LinkTemp) //This is the line I added.&lt;/P&gt;&lt;P&gt;LOAD DISTINCT&lt;/P&gt;&lt;P&gt;ID&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;as %CUSTOMER_ID,&lt;/P&gt;&lt;P&gt;RepID&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;as VertegenwoordigerKey&lt;/P&gt;&lt;P&gt;RESIDENT CUSTOMER;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jan 2012 14:50:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Link-table-issue/m-p/256801#M707231</guid>
      <dc:creator>chriscammers</dc:creator>
      <dc:date>2012-01-06T14:50:50Z</dc:date>
    </item>
    <item>
      <title>Link table issue</title>
      <link>https://community.qlik.com/t5/QlikView/Link-table-issue/m-p/256802#M707232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi Chris,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much, you really helped me out here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Henco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Jan 2012 15:38:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Link-table-issue/m-p/256802#M707232</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-01-07T15:38:48Z</dc:date>
    </item>
    <item>
      <title>Link table issue</title>
      <link>https://community.qlik.com/t5/QlikView/Link-table-issue/m-p/256803#M707233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chris,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's been a while ago, but I still have an issue with my link table. The issue I described at first is solved, thanks to your answer, but what I miss right now are the customers who don't have any transactions. What I would like to do is show all the customers per salesrep, by using the Link table. Due to the left join, I can't get all the customers linked to the salesrep because there are no transactions. I strongly hope you do have any options for me. Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Henco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2012 08:09:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Link-table-issue/m-p/256803#M707233</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-05-01T08:09:26Z</dc:date>
    </item>
    <item>
      <title>Link table issue</title>
      <link>https://community.qlik.com/t5/QlikView/Link-table-issue/m-p/256804#M707234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Henco,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try using an outer join instead of the left join.&amp;nbsp; This should keep all of the records from both tables so that you aren't missing any data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nicole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2012 12:37:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Link-table-issue/m-p/256804#M707234</guid>
      <dc:creator>Nicole-Smith</dc:creator>
      <dc:date>2012-05-01T12:37:19Z</dc:date>
    </item>
  </channel>
</rss>

