<?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: Joining 2 tables... in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Joining-2-tables/m-p/271039#M497797</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry i didnt get you..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Aug 2011 06:41:29 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-08-16T06:41:29Z</dc:date>
    <item>
      <title>Joining 2 tables...</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-2-tables/m-p/271030#M497788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i have 2 tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;USER_MASTER_DATA:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;- &lt;SPAN style="color: #0000ff;"&gt;&lt;EM&gt;USERID&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;- USERNAME&lt;/P&gt;&lt;P&gt;- COUNTRY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SESSIONS_TABLE:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;- &lt;SPAN style="color: #0000ff;"&gt;&lt;EM&gt;USERID&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;- SESSIONTIME&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i do a normal LOAD, i can easily make a table to see which user's session time. BUT only to those who had sessios.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i know for those who never had? i tried outer join, but it didn't really work and the table is messy because we have everything.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Aug 2011 03:05:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-2-tables/m-p/271030#M497788</guid>
      <dc:creator />
      <dc:date>2011-08-14T03:05:31Z</dc:date>
    </item>
    <item>
      <title>Re: Joining 2 tables...</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-2-tables/m-p/271031#M497789</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I've understood your question correctly, you probably need to join the session times in two steps - first a normal join, and second, a self-join in the results table to replace nulls with zeroes. Something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;USER_SESSIONS:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USERID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USERNAME,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; COUNTRY,&lt;/P&gt;&lt;P&gt;From ...&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left Join (USER_SESSIONS)&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USERID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SESSIONTIME AS tmpSessionTime&lt;/P&gt;&lt;P&gt;From ...&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Join (USER_SESSIONS)&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USERID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(IsNull(tmpSessionTime), 0, tmpSessionTime) AS SESSIONTIME&lt;/P&gt;&lt;P&gt;Resident USER_SESSIONS;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Aug 2011 11:51:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-2-tables/m-p/271031#M497789</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2011-08-14T11:51:00Z</dc:date>
    </item>
    <item>
      <title>Joining 2 tables...</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-2-tables/m-p/271032#M497790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jonathan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;close, but the problem is, in session table, userid might not exist because Sessions table is a log, whoever connect, will have a row recorded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, the problem is, how do we know which users didn't connect?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12px;"&gt;USER_MASTER_DATA:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;- &lt;SPAN style="font-size: 12px; color: #0000ff;"&gt;&lt;EM style="font-size: 12px;"&gt;USERID&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;- USERNAME&lt;/P&gt;&lt;P&gt;- QVW_Name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12px;"&gt;SESSIONS_TABLE:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;- &lt;SPAN style="font-size: 12px; color: #0000ff;"&gt;&lt;EM style="font-size: 12px;"&gt;USERID&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;- SESSIONTIME&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Aug 2011 12:21:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-2-tables/m-p/271032#M497790</guid>
      <dc:creator />
      <dc:date>2011-08-14T12:21:12Z</dc:date>
    </item>
    <item>
      <title>Re: Joining 2 tables...</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-2-tables/m-p/271033#M497791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;NickSatch&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That's what the second join is for. All the users who did not connect and are without a sessions record in the log will have a null session time in the result table. The second join replaces these nulls with a zero. So zero session time means the user did not connect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Aug 2011 20:21:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-2-tables/m-p/271033#M497791</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2011-08-14T20:21:37Z</dc:date>
    </item>
    <item>
      <title>Joining 2 tables...</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-2-tables/m-p/271034#M497792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jonathan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Says, if i wanted to filter by month, it wont work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i select Jul, from session table, the user who doesn't exist in session table will not show up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unless, there's a way to insert, Jul &amp;gt; user A &amp;gt; 0 (accordin to the IF statement) ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;nICK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Aug 2011 06:43:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-2-tables/m-p/271034#M497792</guid>
      <dc:creator />
      <dc:date>2011-08-15T06:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: Joining 2 tables...</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-2-tables/m-p/271035#M497793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nick&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Depends what you mean by filter. If you are displaying in a table or chart, (say dimensioned by user, and filtered by a date selection) be sure to turn off suppressing zeroes, as this will hide the users that did not connect in the filtered periods (session time = 0).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Aug 2011 18:06:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-2-tables/m-p/271035#M497793</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2011-08-15T18:06:07Z</dc:date>
    </item>
    <item>
      <title>Re: Joining 2 tables...</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-2-tables/m-p/271036#M497794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jonathan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I made a sample QVW, it's easier to understand i think...&lt;/P&gt;&lt;P&gt;Thanks for your help. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2011 05:28:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-2-tables/m-p/271036#M497794</guid>
      <dc:creator />
      <dc:date>2011-08-16T05:28:03Z</dc:date>
    </item>
    <item>
      <title>Re: Joining 2 tables...</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-2-tables/m-p/271037#M497795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See if the attached sample can help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2011 05:58:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-2-tables/m-p/271037#M497795</guid>
      <dc:creator />
      <dc:date>2011-08-16T05:58:02Z</dc:date>
    </item>
    <item>
      <title>Re: Joining 2 tables...</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-2-tables/m-p/271038#M497796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks BlackRocks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That method will work when you already have the data in the data in the table, then u can use that to suppress.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For my case, we need to first create the data, by userID by month....etc. i think. and i'm still working on it. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2011 06:32:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-2-tables/m-p/271038#M497796</guid>
      <dc:creator />
      <dc:date>2011-08-16T06:32:25Z</dc:date>
    </item>
    <item>
      <title>Re: Joining 2 tables...</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-2-tables/m-p/271039#M497797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry i didnt get you..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2011 06:41:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-2-tables/m-p/271039#M497797</guid>
      <dc:creator />
      <dc:date>2011-08-16T06:41:29Z</dc:date>
    </item>
    <item>
      <title>Re: Joining 2 tables...</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-2-tables/m-p/271040#M497798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The data that i have, only allows me to see who has used which QVW for N times.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is doesn't allow is , we can't see who has not used which QVW in which month. because the data is simply not available.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We can do 2 tables, to present the data, but ideally, i'd like to have it in a single table, by userID, by QVW, by Month.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2011 08:28:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-2-tables/m-p/271040#M497798</guid>
      <dc:creator />
      <dc:date>2011-08-16T08:28:00Z</dc:date>
    </item>
    <item>
      <title>Joining 2 tables...</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-2-tables/m-p/271041#M497799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi nicksatch. Please tel me, why do u have to differentiate between QVW and QVW_session here? They seem to be the same, or not?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SESSION:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; UserID, QVW_session, access_DATE, session&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A1, SALES, JAN, 23&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A2, FI, JAN, 230&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A3, FI, FEB, 45&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A4, SALES, FEB,12&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A5, FI, FEB, 2&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;USER_MASTER:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; UserID, QVW&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A1, SALES&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A1, FI&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A2, FI&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A2, SALES&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A4, SALES&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A5, FI&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; , &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; , &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; , &lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2011 09:43:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-2-tables/m-p/271041#M497799</guid>
      <dc:creator />
      <dc:date>2011-08-16T09:43:22Z</dc:date>
    </item>
    <item>
      <title>Joining 2 tables...</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-2-tables/m-p/271042#M497800</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;If I am right and I understand the main question right &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt; I think it can be done by doing te following.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="jive-code"&gt;TEST:&lt;BR /&gt;LOAD &lt;BR /&gt; *&lt;BR /&gt;From USER_MASTER_DATA;&lt;BR /&gt;&lt;BR /&gt;Left Join (TEST)&lt;BR /&gt;LOAD &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&lt;BR /&gt;From SESSIONS_TABLE&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="jive-code"&gt;WHERE NOT USER_MASTER_DATA.UserID IN (SELECT UserUD FROM SESSIONS_TABLE);&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or something like this. I have not tested this and I have only a few minutes but my point is that maybe you can use something like where not &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this will help you a little bit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Martijn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2011 14:38:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-2-tables/m-p/271042#M497800</guid>
      <dc:creator />
      <dc:date>2011-08-16T14:38:44Z</dc:date>
    </item>
    <item>
      <title>Re: Joining 2 tables...</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-2-tables/m-p/271043#M497801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Biteguebiessono,&lt;/P&gt;&lt;P&gt;Yes, they are the same, i use different names because i was still testing the script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi Martijn,&lt;/P&gt;&lt;P&gt;i think what we need to do now is to create a MONTH columns for MASTER_DATA table.&lt;/P&gt;&lt;P&gt;I tried joins but it work work, &lt;/P&gt;&lt;P&gt;because in my chart, i wanted to be able to select Month and look at that month's data.&lt;/P&gt;&lt;P&gt;e.g: in this month, who are those users who has been given access to a QVW but did not user it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;]the idea now, i can throw all the months we have in the sessions table into Index, then i=1 or something then loop it for all the users in MASTER_DATA table, month by month, BUT, i'm not sure if this will create a performance issue, because there are a lot of users to loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seems harder than i initially thoughts.... &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Aug 2011 01:32:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-2-tables/m-p/271043#M497801</guid>
      <dc:creator />
      <dc:date>2011-08-17T01:32:05Z</dc:date>
    </item>
  </channel>
</rss>

