<?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 Date from multiple tables and loosely coupled tables in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Date-from-multiple-tables-and-loosely-coupled-tables/m-p/465298#M568697</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;That’s my first QlikView project and I’m facing a problem I’ve been struggling with for quite some time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have data from 2 databases. They contain ID1/Date/Downloads and ID2/Date/ Visitors, respectively. Date is the same for both databases and it is in a correct date format. ID1 and ID2 are different but they correspond to the same title. That’s why I created an extra excel file with matching ID1/ID2/Title. I want to create a QlikView dashboard with Title/ID1/ID2/Downloads/Visitors all together in a Straight table box and a separate Date box, so that I can select a specific Date and see the Downloads and Visitors per Title on that date. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I simply link the fields in the way I need them I end up with loosely coupled tables:&lt;/P&gt;&lt;TABLE border="0" cellpadding="3" cellspacing="0" class="jiveNoBorder" style="width: 100%; border: 0px solid rgb(0, 0, 0);"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="background-color: #6690bc; color: #ffffff; text-align: center; padding: 3px;"&gt;Script 1&lt;BR /&gt;&lt;/TH&gt;&lt;TH style="background-color: #6690bc; color: #ffffff; text-align: center; padding: 3px;"&gt;&lt;SPAN style="color: #ffffff;"&gt;TableView 1&lt;/SPAN&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="color: #333333; text-align: left; padding: 3px; background-color: transparent; font-family: arial, helvetica, sans-serif;"&gt;&lt;P&gt;Database1:&lt;/P&gt;&lt;P&gt;LOAD ID1, Date1 as Date, Downloads&lt;/P&gt;&lt;P&gt;FROM..;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Database2:&lt;/P&gt;&lt;P&gt;LOAD ID2, Date2 as Date, Visitors&lt;/P&gt;&lt;P&gt;FROM..;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Local:&lt;/P&gt;&lt;P&gt;LOAD ID1, ID2, Title&lt;/P&gt;&lt;P&gt;FROM..;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="text-align: center; color: rgb(51, 51, 51); padding: 3px; background-color: transparent; font-family: arial, helvetica, sans-serif;"&gt;&lt;IMG __jive_id="24390" class="jive-image" height="238" alt="export1.png" src="https://community.qlik.com/legacyfs/online/24390_export1.png" style="width: 317.7840909090909px; height: 238px;" width="318" /&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I added a MasterCalendar and Link table as suggested by &lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" href="https://community.qlik.com/people/johnw" id="jive-22264970325063979536" style="background-color: #ffffff; font-size: 12px; color: #007fc0; font-weight: bold; font-family: Arial; text-align: center;"&gt;John Witherspoon&lt;/A&gt; in another post. This solves the problem with the dates but the loose coupling remains. &lt;/P&gt;&lt;TABLE border="0" cellpadding="3" cellspacing="0" class="jiveNoBorder" style="width: 100%; border: 0px solid rgb(0, 0, 0);"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="background-color: #6690bc; color: #ffffff; text-align: center; padding: 3px;"&gt;&lt;SPAN style="color: #ffffff;"&gt;Script 2&lt;/SPAN&gt;&lt;/TH&gt;&lt;TH style="background-color: #6690bc; color: #ffffff; text-align: center; padding: 3px;"&gt;&lt;SPAN style="color: #ffffff; text-align: center; background-color: #6690bc;"&gt;TableView 1&lt;/SPAN&gt;&lt;BR /&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="color: #333333; text-align: left; padding: 3px; background-color: transparent; font-family: arial, helvetica, sans-serif;"&gt;&lt;P&gt;Database1:&lt;/P&gt;&lt;P&gt;Load *, &lt;/P&gt;&lt;P&gt;AutoNumber(Date1) as Key1;&lt;/P&gt;&lt;P&gt;LOAD ID1, Date1, Downloads&lt;/P&gt;&lt;P&gt;FROM..;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Database2:&lt;/P&gt;&lt;P&gt;Load *, &lt;/P&gt;&lt;P&gt;AutoNumber(Date2) as Key2;&lt;/P&gt;&lt;P&gt;LOAD ID2, Date2, Visitors&lt;/P&gt;&lt;P&gt;FROM..;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Local:&lt;/P&gt;&lt;P&gt;LOAD ID1, ID2, Title&lt;/P&gt;&lt;P&gt;FROM..;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LinkTable:&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;Date1 as Date,&lt;/P&gt;&lt;P&gt;Key1&lt;/P&gt;&lt;P&gt;resident Database1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate(LinkTable)&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;Date2 as Date,&lt;/P&gt;&lt;P&gt;Key2&lt;/P&gt;&lt;P&gt;resident Database2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Calendar:&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;,date(monthstart(Date),'MMM') as Month&lt;/P&gt;&lt;P&gt;,date(yearstart(Date),'YYYY') as Year;&lt;/P&gt;&lt;P&gt;LOAD date(makedate(2012,10,1)+recno()-1) as Date&lt;/P&gt;&lt;P&gt;AUTOGENERATE 365;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="color: #333333; text-align: left; padding: 3px; background-color: transparent; font-family: arial, helvetica, sans-serif;"&gt;&lt;IMG __jive_id="24391" class="jive-image-thumbnail jive-image" height="238" onclick="" alt="export.png" src="https://community.qlik.com/legacyfs/online/24391_export.png" style="height: 238px; width: 546.4285714285714px;" width="546" /&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be most welcome &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Ivelin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 30 Oct 2012 10:15:43 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-10-30T10:15:43Z</dc:date>
    <item>
      <title>Date from multiple tables and loosely coupled tables</title>
      <link>https://community.qlik.com/t5/QlikView/Date-from-multiple-tables-and-loosely-coupled-tables/m-p/465298#M568697</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;That’s my first QlikView project and I’m facing a problem I’ve been struggling with for quite some time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have data from 2 databases. They contain ID1/Date/Downloads and ID2/Date/ Visitors, respectively. Date is the same for both databases and it is in a correct date format. ID1 and ID2 are different but they correspond to the same title. That’s why I created an extra excel file with matching ID1/ID2/Title. I want to create a QlikView dashboard with Title/ID1/ID2/Downloads/Visitors all together in a Straight table box and a separate Date box, so that I can select a specific Date and see the Downloads and Visitors per Title on that date. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I simply link the fields in the way I need them I end up with loosely coupled tables:&lt;/P&gt;&lt;TABLE border="0" cellpadding="3" cellspacing="0" class="jiveNoBorder" style="width: 100%; border: 0px solid rgb(0, 0, 0);"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="background-color: #6690bc; color: #ffffff; text-align: center; padding: 3px;"&gt;Script 1&lt;BR /&gt;&lt;/TH&gt;&lt;TH style="background-color: #6690bc; color: #ffffff; text-align: center; padding: 3px;"&gt;&lt;SPAN style="color: #ffffff;"&gt;TableView 1&lt;/SPAN&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="color: #333333; text-align: left; padding: 3px; background-color: transparent; font-family: arial, helvetica, sans-serif;"&gt;&lt;P&gt;Database1:&lt;/P&gt;&lt;P&gt;LOAD ID1, Date1 as Date, Downloads&lt;/P&gt;&lt;P&gt;FROM..;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Database2:&lt;/P&gt;&lt;P&gt;LOAD ID2, Date2 as Date, Visitors&lt;/P&gt;&lt;P&gt;FROM..;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Local:&lt;/P&gt;&lt;P&gt;LOAD ID1, ID2, Title&lt;/P&gt;&lt;P&gt;FROM..;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="text-align: center; color: rgb(51, 51, 51); padding: 3px; background-color: transparent; font-family: arial, helvetica, sans-serif;"&gt;&lt;IMG __jive_id="24390" class="jive-image" height="238" alt="export1.png" src="https://community.qlik.com/legacyfs/online/24390_export1.png" style="width: 317.7840909090909px; height: 238px;" width="318" /&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I added a MasterCalendar and Link table as suggested by &lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" href="https://community.qlik.com/people/johnw" id="jive-22264970325063979536" style="background-color: #ffffff; font-size: 12px; color: #007fc0; font-weight: bold; font-family: Arial; text-align: center;"&gt;John Witherspoon&lt;/A&gt; in another post. This solves the problem with the dates but the loose coupling remains. &lt;/P&gt;&lt;TABLE border="0" cellpadding="3" cellspacing="0" class="jiveNoBorder" style="width: 100%; border: 0px solid rgb(0, 0, 0);"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="background-color: #6690bc; color: #ffffff; text-align: center; padding: 3px;"&gt;&lt;SPAN style="color: #ffffff;"&gt;Script 2&lt;/SPAN&gt;&lt;/TH&gt;&lt;TH style="background-color: #6690bc; color: #ffffff; text-align: center; padding: 3px;"&gt;&lt;SPAN style="color: #ffffff; text-align: center; background-color: #6690bc;"&gt;TableView 1&lt;/SPAN&gt;&lt;BR /&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="color: #333333; text-align: left; padding: 3px; background-color: transparent; font-family: arial, helvetica, sans-serif;"&gt;&lt;P&gt;Database1:&lt;/P&gt;&lt;P&gt;Load *, &lt;/P&gt;&lt;P&gt;AutoNumber(Date1) as Key1;&lt;/P&gt;&lt;P&gt;LOAD ID1, Date1, Downloads&lt;/P&gt;&lt;P&gt;FROM..;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Database2:&lt;/P&gt;&lt;P&gt;Load *, &lt;/P&gt;&lt;P&gt;AutoNumber(Date2) as Key2;&lt;/P&gt;&lt;P&gt;LOAD ID2, Date2, Visitors&lt;/P&gt;&lt;P&gt;FROM..;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Local:&lt;/P&gt;&lt;P&gt;LOAD ID1, ID2, Title&lt;/P&gt;&lt;P&gt;FROM..;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LinkTable:&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;Date1 as Date,&lt;/P&gt;&lt;P&gt;Key1&lt;/P&gt;&lt;P&gt;resident Database1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate(LinkTable)&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;Date2 as Date,&lt;/P&gt;&lt;P&gt;Key2&lt;/P&gt;&lt;P&gt;resident Database2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Calendar:&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;,date(monthstart(Date),'MMM') as Month&lt;/P&gt;&lt;P&gt;,date(yearstart(Date),'YYYY') as Year;&lt;/P&gt;&lt;P&gt;LOAD date(makedate(2012,10,1)+recno()-1) as Date&lt;/P&gt;&lt;P&gt;AUTOGENERATE 365;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="color: #333333; text-align: left; padding: 3px; background-color: transparent; font-family: arial, helvetica, sans-serif;"&gt;&lt;IMG __jive_id="24391" class="jive-image-thumbnail jive-image" height="238" onclick="" alt="export.png" src="https://community.qlik.com/legacyfs/online/24391_export.png" style="height: 238px; width: 546.4285714285714px;" width="546" /&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be most welcome &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Ivelin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Oct 2012 10:15:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-from-multiple-tables-and-loosely-coupled-tables/m-p/465298#M568697</guid>
      <dc:creator />
      <dc:date>2012-10-30T10:15:43Z</dc:date>
    </item>
    <item>
      <title>Re: Date from multiple tables and loosely coupled tables</title>
      <link>https://community.qlik.com/t5/QlikView/Date-from-multiple-tables-and-loosely-coupled-tables/m-p/465299#M568698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try replacing your ID2 with ID1 values, using a mapping table based on your local table. Then you can concatenate your fact tables coming from DB1 and DB2, having common fields ID1 and Date, and fields Downloads and Visitors partially filled. You can keep your Title table linked to your facts via ID1 or just join it / map it to you fact table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can create a master calendar table and link it to Date, if you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think this should solve your issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Oct 2012 11:00:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-from-multiple-tables-and-loosely-coupled-tables/m-p/465299#M568698</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-10-30T11:00:34Z</dc:date>
    </item>
    <item>
      <title>Re: Date from multiple tables and loosely coupled tables</title>
      <link>https://community.qlik.com/t5/QlikView/Date-from-multiple-tables-and-loosely-coupled-tables/m-p/465300#M568699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stefan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;although most Titles have both ID1 and ID2, some do not have ID1 and others ID2. I read that 2 columns must be used with map. Below is how the Local.xlsx file looks. I initially added a 3rd ID trying to avoid this problem before the data is loaded in QV but it never came into use. Is there any way around this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Title&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ID1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ID2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ID3&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Title1&amp;nbsp;&amp;nbsp;&amp;nbsp; 001&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 102&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;Title2&amp;nbsp;&amp;nbsp;&amp;nbsp; 022&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 104&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&lt;/P&gt;&lt;P&gt;Title3&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; 105&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3&lt;/P&gt;&lt;P&gt;Title4&amp;nbsp;&amp;nbsp;&amp;nbsp; 034&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; 4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ivelin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Oct 2012 13:47:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-from-multiple-tables-and-loosely-coupled-tables/m-p/465300#M568699</guid>
      <dc:creator />
      <dc:date>2012-10-30T13:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: Date from multiple tables and loosely coupled tables</title>
      <link>https://community.qlik.com/t5/QlikView/Date-from-multiple-tables-and-loosely-coupled-tables/m-p/465301#M568700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, so I would suggest using two mapping tables to replace ID1 and ID2 with ID3:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Map1:&lt;/P&gt;&lt;P&gt;MAPPING LOAD ID1, ID3 from ...;&amp;nbsp; // Local&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Map2:&lt;/P&gt;&lt;P&gt;MAPPING LOAD ID2, ID3 from ....; // Local&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Database1:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;applymap('Map1',ID1,'NoMapping') as ID, Date1 as Date, Downloads&lt;/P&gt;&lt;P&gt;FROM..;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Database2:&lt;/P&gt;&lt;P&gt;CONCATENATE LOAD &lt;/P&gt;&lt;P&gt;applymap('Map2',ID2,'NoMapping') as ID, Date2 as Date, Visitors&lt;/P&gt;&lt;P&gt;FROM..;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Local:&lt;/P&gt;&lt;P&gt;LOAD ID3 as ID, Title&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;Untested, so beware of typos...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Oct 2012 14:18:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-from-multiple-tables-and-loosely-coupled-tables/m-p/465301#M568700</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-10-30T14:18:12Z</dc:date>
    </item>
    <item>
      <title>Re: Date from multiple tables and loosely coupled tables</title>
      <link>https://community.qlik.com/t5/QlikView/Date-from-multiple-tables-and-loosely-coupled-tables/m-p/465302#M568701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Stefan, works great! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ivelin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Oct 2012 14:37:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-from-multiple-tables-and-loosely-coupled-tables/m-p/465302#M568701</guid>
      <dc:creator />
      <dc:date>2012-10-30T14:37:07Z</dc:date>
    </item>
  </channel>
</rss>

