<?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: Create one table from 2 different tables in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Create-one-table-from-2-different-tables/m-p/528219#M197392</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Ankri,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One which i mentioned will make table name Master with that data &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Oct 2013 12:36:53 GMT</pubDate>
    <dc:creator>saumyashah90</dc:creator>
    <dc:date>2013-10-08T12:36:53Z</dc:date>
    <item>
      <title>Create one table from 2 different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Create-one-table-from-2-different-tables/m-p/528215#M197388</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;I have 2 tables :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;QV_RET_OVED_VW&lt;/STRONG&gt; with the columns :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; COMMERCIAL_NUM, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; COMMERCIAL, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GROUPE_OVED&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;QV_RET_FAMILLES_VW&lt;/STRONG&gt; with the columns :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; COMMERCIAL, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FAMILLE_NUM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; YEARMONTH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to create a table QV_RET_GROUPE_OVED with the columns :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GROUPE_OVED&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; COUNT(FAMILLE_NUM)&lt;/P&gt;&lt;P&gt;That represents the count of FAMILLE_NUM for each GROUP_OVED and by YEARMONTH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried with the expression 'Resident' but it doesn't work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Oct 2013 12:15:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-one-table-from-2-different-tables/m-p/528215#M197388</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-10-08T12:15:58Z</dc:date>
    </item>
    <item>
      <title>Re: Create one table from 2 different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Create-one-table-from-2-different-tables/m-p/528216#M197389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just load the tables:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QV_RET_OVED_VW:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; COMMERCIAL_NUM,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; COMMERCIAL,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; GROUPE_OVED&lt;/P&gt;&lt;P&gt;From QV_RET_OVED_VW_source;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QV_RET_FAMILLES_VW&lt;/P&gt;&lt;P&gt;Load:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; COMMERCIAL,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FAMILLE_NUM,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; YEARMONTH&lt;/P&gt;&lt;P&gt;From ...QV_RET_FAMILLES_VW_source...;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in the UI create a new straight table with GROUPE_OVED as dimension and count(FAMILLE_NUM) as expression. That's all you need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you feel you need to do it all in the script you'll have to join the tables:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; COMMERCIAL_NUM,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; COMMERCIAL,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; GROUPE_OVED&lt;/P&gt;&lt;P&gt;From QV_RET_OVED_VW_source;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;join (Table1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; COMMERCIAL,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FAMILLE_NUM,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; YEARMONTH&lt;/P&gt;&lt;P&gt;From ...QV_RET_FAMILLES_VW_source...;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table2:&lt;/P&gt;&lt;P&gt;Load GROUPE_OVED, count(FAMILLE_NUM) as Count&lt;/P&gt;&lt;P&gt;resident Table1&lt;/P&gt;&lt;P&gt;group by GROUPE_OVED;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Oct 2013 12:22:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-one-table-from-2-different-tables/m-p/528216#M197389</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-10-08T12:22:55Z</dc:date>
    </item>
    <item>
      <title>Re: Create one table from 2 different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Create-one-table-from-2-different-tables/m-p/528217#M197390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;abc:&lt;BR /&gt;Left Join(QV_RET_OVED_VW)&lt;/P&gt;&lt;P&gt;Load * resident&amp;nbsp; QV_RET_FAMILLIES_VW;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Master:&lt;/P&gt;&lt;P&gt;Load GROUPE_OVED,&lt;/P&gt;&lt;P&gt;Count(FAMILLE_NUM) as CountofFAMILLE&lt;/P&gt;&lt;P&gt;resident abc;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Oct 2013 12:31:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-one-table-from-2-different-tables/m-p/528217#M197390</guid>
      <dc:creator>saumyashah90</dc:creator>
      <dc:date>2013-10-08T12:31:39Z</dc:date>
    </item>
    <item>
      <title>Re: Create one table from 2 different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Create-one-table-from-2-different-tables/m-p/528218#M197391</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;Thanks for your response&lt;/P&gt;&lt;P&gt;But I &lt;STRONG&gt;need a table&lt;/STRONG&gt; with the data and not to create a chart&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Oct 2013 12:34:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-one-table-from-2-different-tables/m-p/528218#M197391</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-10-08T12:34:40Z</dc:date>
    </item>
    <item>
      <title>Re: Create one table from 2 different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Create-one-table-from-2-different-tables/m-p/528219#M197392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Ankri,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One which i mentioned will make table name Master with that data &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Oct 2013 12:36:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-one-table-from-2-different-tables/m-p/528219#M197392</guid>
      <dc:creator>saumyashah90</dc:creator>
      <dc:date>2013-10-08T12:36:53Z</dc:date>
    </item>
    <item>
      <title>Re: Create one table from 2 different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Create-one-table-from-2-different-tables/m-p/528220#M197393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry but I don't understand&lt;/P&gt;&lt;P&gt;That is not working&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Oct 2013 12:44:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-one-table-from-2-different-tables/m-p/528220#M197393</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-10-08T12:44:59Z</dc:date>
    </item>
    <item>
      <title>Re: Create one table from 2 different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Create-one-table-from-2-different-tables/m-p/528221#M197394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See first you load both the tables&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;Load COMMERCIAL_NUM,&lt;/P&gt;&lt;P&gt;COMMERCIAL,&lt;/P&gt;&lt;P&gt;GROUP_OVED&lt;/P&gt;&lt;P&gt;From QV_RET_OVED_VW;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table2:&lt;/P&gt;&lt;P&gt;Load COMMERCIAL,&lt;/P&gt;&lt;P&gt;FAMILLE_NUM,&lt;/P&gt;&lt;P&gt;YEAR MONTH&lt;/P&gt;&lt;P&gt;FROM QV_RET_FAMILLE_VW;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After this two table get loaded,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left Join(Table1)&lt;/P&gt;&lt;P&gt;Load * resident Table2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop table Table2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Master:&lt;/P&gt;&lt;P&gt;Load Group_OVED,&lt;/P&gt;&lt;P&gt;Count(FAMILLE_NUM) as Count_OF_FAMILLE_NUM&lt;/P&gt;&lt;P&gt;resident Table1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop table Table1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So You will Have &lt;STRONG&gt;Master&lt;/STRONG&gt; table fianl consisting of required data&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Oct 2013 12:53:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-one-table-from-2-different-tables/m-p/528221#M197394</guid>
      <dc:creator>saumyashah90</dc:creator>
      <dc:date>2013-10-08T12:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: Create one table from 2 different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Create-one-table-from-2-different-tables/m-p/528222#M197395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Oct 2013 13:09:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-one-table-from-2-different-tables/m-p/528222#M197395</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-10-08T13:09:13Z</dc:date>
    </item>
    <item>
      <title>Re: Create one table from 2 different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Create-one-table-from-2-different-tables/m-p/528223#M197396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you please Mark it correct if it is correct&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Oct 2013 13:14:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-one-table-from-2-different-tables/m-p/528223#M197396</guid>
      <dc:creator>saumyashah90</dc:creator>
      <dc:date>2013-10-08T13:14:19Z</dc:date>
    </item>
    <item>
      <title>Re: Create one table from 2 different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Create-one-table-from-2-different-tables/m-p/528224#M197397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi G WASSENAAR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I have 3 tables to link, How can I do ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Oct 2013 13:26:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-one-table-from-2-different-tables/m-p/528224#M197397</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-10-08T13:26:01Z</dc:date>
    </item>
    <item>
      <title>Re: Create one table from 2 different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Create-one-table-from-2-different-tables/m-p/528225#M197398</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 3 tables to link, how can I do ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Oct 2013 13:27:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-one-table-from-2-different-tables/m-p/528225#M197398</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-10-08T13:27:26Z</dc:date>
    </item>
    <item>
      <title>Re: Create one table from 2 different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Create-one-table-from-2-different-tables/m-p/528226#M197399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No idea. You'll have to show the data model and explain what the result should be. An example with some data would help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Oct 2013 13:36:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-one-table-from-2-different-tables/m-p/528226#M197399</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-10-08T13:36:42Z</dc:date>
    </item>
    <item>
      <title>Re: Create one table from 2 different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Create-one-table-from-2-different-tables/m-p/528227#M197400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I addition to the tables &lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;QV_RET_OVED_VW&lt;/STRONG&gt; and &lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;QV_RET_&lt;/STRONG&gt;FAMILLES_VW,&lt;/P&gt;&lt;P&gt;I want to link the table QV_RET_FACTURATION wich colums are :&lt;/P&gt;&lt;P&gt;COMMERCIAL&lt;/P&gt;&lt;P&gt;MARGE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and to have in the final table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;GROUPE_OVED (from the table QV_RET_OVED_VW)&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;count(FAMILLE_NUM) as Count (from the table QV_RET_FAMILLES_VW)&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;sum (MARGE) as SUM_MARGE &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;(from the table QV_RET_FACTURATION &lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;group by GROUPE_OVED;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Oct 2013 13:46:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-one-table-from-2-different-tables/m-p/528227#M197400</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-10-08T13:46:39Z</dc:date>
    </item>
  </channel>
</rss>

