<?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 Join three tables with different fields in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Join-three-tables-with-different-fields/m-p/765067#M663746</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm new with Qlikview and don't know how to go on now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got three tables:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KST:&lt;/P&gt;&lt;P&gt;CostCenterNumber&lt;/P&gt;&lt;P&gt;CostCenterDescription&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;CostCenterDescription&lt;/P&gt;&lt;P&gt;Value1&lt;/P&gt;&lt;P&gt;Value2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WorkedHours:&lt;/P&gt;&lt;P&gt;CostCenterNumber&lt;/P&gt;&lt;P&gt;HoursWorked&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to link DATA (includes sales etc.) with WorkedHours to now how many hours used for made sales. Problem is, that I got CostCenterNumber in the WorkedHours and CostCenterDescription in the Data, the translation is in KST. &lt;/P&gt;&lt;P&gt;How do I have to script that? &lt;/P&gt;&lt;P&gt;The three tables come from Excel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks for your help in advance!&lt;/P&gt;&lt;P&gt;Christoph&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 Jan 2015 15:34:53 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-01-09T15:34:53Z</dc:date>
    <item>
      <title>Join three tables with different fields</title>
      <link>https://community.qlik.com/t5/QlikView/Join-three-tables-with-different-fields/m-p/765067#M663746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm new with Qlikview and don't know how to go on now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got three tables:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KST:&lt;/P&gt;&lt;P&gt;CostCenterNumber&lt;/P&gt;&lt;P&gt;CostCenterDescription&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;CostCenterDescription&lt;/P&gt;&lt;P&gt;Value1&lt;/P&gt;&lt;P&gt;Value2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WorkedHours:&lt;/P&gt;&lt;P&gt;CostCenterNumber&lt;/P&gt;&lt;P&gt;HoursWorked&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to link DATA (includes sales etc.) with WorkedHours to now how many hours used for made sales. Problem is, that I got CostCenterNumber in the WorkedHours and CostCenterDescription in the Data, the translation is in KST. &lt;/P&gt;&lt;P&gt;How do I have to script that? &lt;/P&gt;&lt;P&gt;The three tables come from Excel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks for your help in advance!&lt;/P&gt;&lt;P&gt;Christoph&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jan 2015 15:34:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-three-tables-with-different-fields/m-p/765067#M663746</guid>
      <dc:creator />
      <dc:date>2015-01-09T15:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: Join three tables with different fields</title>
      <link>https://community.qlik.com/t5/QlikView/Join-three-tables-with-different-fields/m-p/765068#M663747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Load * From KST;&lt;/P&gt;&lt;P&gt;left join&lt;/P&gt;&lt;P&gt;load * from DATA;&lt;/P&gt;&lt;P&gt;left join&lt;/P&gt;&lt;P&gt;load * from WorkedHours;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;replace the load * .... with the loading from Excel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jan 2015 15:43:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-three-tables-with-different-fields/m-p/765068#M663747</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2015-01-09T15:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: Join three tables with different fields</title>
      <link>https://community.qlik.com/t5/QlikView/Join-three-tables-with-different-fields/m-p/765069#M663748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No that doesn't lead to correct results.&lt;/P&gt;&lt;P&gt;Another problem I have forgotten to tell is that I got more CostCenters in "WorkedHours" than in "Data", of course I need to keep them.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jan 2015 15:55:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-three-tables-with-different-fields/m-p/765069#M663748</guid>
      <dc:creator />
      <dc:date>2015-01-09T15:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: Join three tables with different fields</title>
      <link>https://community.qlik.com/t5/QlikView/Join-three-tables-with-different-fields/m-p/765070#M663749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So try with&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load * From KST;&lt;/P&gt;&lt;P&gt;left join&lt;/P&gt;&lt;P&gt;load * from DATA;&lt;/P&gt;&lt;P&gt;join&lt;/P&gt;&lt;P&gt;load * from WorkedHours;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jan 2015 15:58:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-three-tables-with-different-fields/m-p/765070#M663749</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2015-01-09T15:58:18Z</dc:date>
    </item>
    <item>
      <title>Re: Join three tables with different fields</title>
      <link>https://community.qlik.com/t5/QlikView/Join-three-tables-with-different-fields/m-p/765071#M663750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Now I got the correct summaration of hours but no values from the DATA table, its all gone. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jan 2015 16:04:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-three-tables-with-different-fields/m-p/765071#M663750</guid>
      <dc:creator />
      <dc:date>2015-01-09T16:04:52Z</dc:date>
    </item>
    <item>
      <title>Re: Join three tables with different fields</title>
      <link>https://community.qlik.com/t5/QlikView/Join-three-tables-with-different-fields/m-p/765072#M663751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;to be sure not to exclude any value you can use Always join:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load * From KST;&lt;/P&gt;&lt;P&gt;join&lt;/P&gt;&lt;P&gt;load * from DATA;&lt;/P&gt;&lt;P&gt;join&lt;/P&gt;&lt;P&gt;load * from WorkedHours;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I think that the problem comes from different CostCenterDescription,&lt;/P&gt;&lt;P&gt;try, when you load the 2 tables with the field CostCenterDescription to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;Upper(Trim(CostCenterDescription)) as CostCenterDescription&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jan 2015 16:13:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-three-tables-with-different-fields/m-p/765072#M663751</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2015-01-09T16:13:54Z</dc:date>
    </item>
    <item>
      <title>Re: Join three tables with different fields</title>
      <link>https://community.qlik.com/t5/QlikView/Join-three-tables-with-different-fields/m-p/765073#M663752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow! That seems to be the solution, great! Thanks a lot. I will have a few more checks now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a nice weekend so far &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jan 2015 16:17:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-three-tables-with-different-fields/m-p/765073#M663752</guid>
      <dc:creator />
      <dc:date>2015-01-09T16:17:20Z</dc:date>
    </item>
  </channel>
</rss>

