<?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: Combinging three tables in the script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Combinging-three-tables-in-the-script/m-p/664454#M241979</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you describe these tables or even share the app.&lt;/P&gt;&lt;P&gt;Because it's not clear for me what you have now and what you'd like to achieve.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Jun 2014 05:29:02 GMT</pubDate>
    <dc:creator>SergeyMak</dc:creator>
    <dc:date>2014-06-12T05:29:02Z</dc:date>
    <item>
      <title>Combinging three tables in the script</title>
      <link>https://community.qlik.com/t5/QlikView/Combinging-three-tables-in-the-script/m-p/664448#M241973</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 three tables in the script and wanted combine together, I can do using store command into QVD's, is there any possibility to do in the same script at the end of the script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2014 05:19:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Combinging-three-tables-in-the-script/m-p/664448#M241973</guid>
      <dc:creator />
      <dc:date>2014-06-12T05:19:27Z</dc:date>
    </item>
    <item>
      <title>Re: Combinging three tables in the script</title>
      <link>https://community.qlik.com/t5/QlikView/Combinging-three-tables-in-the-script/m-p/664449#M241974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Concatenate?&lt;/P&gt;&lt;P&gt;Join?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2014 05:22:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Combinging-three-tables-in-the-script/m-p/664449#M241974</guid>
      <dc:creator>SergeyMak</dc:creator>
      <dc:date>2014-06-12T05:22:24Z</dc:date>
    </item>
    <item>
      <title>Re: Combinging three tables in the script</title>
      <link>https://community.qlik.com/t5/QlikView/Combinging-three-tables-in-the-script/m-p/664450#M241975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use Concatenate() if the field names are different otherwise it would concatenate automatically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;Tab:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;A,&lt;/P&gt;&lt;P&gt;B&lt;/P&gt;&lt;P&gt;From &amp;lt;Source1&amp;gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate(Tab)&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;A,&lt;/P&gt;&lt;P&gt;C&lt;/P&gt;&lt;P&gt;From &amp;lt;Source2&amp;gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate(Tab)&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;C,&lt;/P&gt;&lt;P&gt;D&lt;/P&gt;&lt;P&gt;From &amp;lt;Source3&amp;gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Store Tab Into Tab.qvd(qvd);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2014 05:24:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Combinging-three-tables-in-the-script/m-p/664450#M241975</guid>
      <dc:creator>senpradip007</dc:creator>
      <dc:date>2014-06-12T05:24:52Z</dc:date>
    </item>
    <item>
      <title>Re: Combinging three tables in the script</title>
      <link>https://community.qlik.com/t5/QlikView/Combinging-three-tables-in-the-script/m-p/664451#M241976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi try below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Main_Table:&lt;/P&gt;&lt;P&gt;load *&amp;nbsp; from table1&lt;/P&gt;&lt;P&gt;concatenate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load *&amp;nbsp; from table2&lt;/P&gt;&lt;P&gt;concatenate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load *&amp;nbsp; from table3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;store Main_Table into Table.qvd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it helped.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2014 05:25:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Combinging-three-tables-in-the-script/m-p/664451#M241976</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-06-12T05:25:18Z</dc:date>
    </item>
    <item>
      <title>Re: Combinging three tables in the script</title>
      <link>https://community.qlik.com/t5/QlikView/Combinging-three-tables-in-the-script/m-p/664452#M241977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes at the end of the table loads put STORE COMMENDS with the table name, If there is relation between this tables then use Joins or Concatenate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T1:&lt;/P&gt;&lt;P&gt;Load * From Loaction;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Join or Concatenate Here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T2:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Load * From Location;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;STORE T1 into T1.qvd;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2014 05:25:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Combinging-three-tables-in-the-script/m-p/664452#M241977</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-06-12T05:25:58Z</dc:date>
    </item>
    <item>
      <title>Re: Combinging three tables in the script</title>
      <link>https://community.qlik.com/t5/QlikView/Combinging-three-tables-in-the-script/m-p/664453#M241978</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did, but I want to make a final single table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2014 05:26:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Combinging-three-tables-in-the-script/m-p/664453#M241978</guid>
      <dc:creator />
      <dc:date>2014-06-12T05:26:27Z</dc:date>
    </item>
    <item>
      <title>Re: Combinging three tables in the script</title>
      <link>https://community.qlik.com/t5/QlikView/Combinging-three-tables-in-the-script/m-p/664454#M241979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you describe these tables or even share the app.&lt;/P&gt;&lt;P&gt;Because it's not clear for me what you have now and what you'd like to achieve.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2014 05:29:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Combinging-three-tables-in-the-script/m-p/664454#M241979</guid>
      <dc:creator>SergeyMak</dc:creator>
      <dc:date>2014-06-12T05:29:02Z</dc:date>
    </item>
    <item>
      <title>Re: Combinging three tables in the script</title>
      <link>https://community.qlik.com/t5/QlikView/Combinging-three-tables-in-the-script/m-p/664455#M241980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you are doing well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are two things you can do either Join OR concatenate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Join will help you get the data from different tables basis the relationship they hold.&lt;/P&gt;&lt;P&gt;2. Concatenate will just append the data of one table to another.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now basis your requirement you can use any of the functionality.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rishi Beri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2014 05:36:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Combinging-three-tables-in-the-script/m-p/664455#M241980</guid>
      <dc:creator />
      <dc:date>2014-06-12T05:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: Combinging three tables in the script</title>
      <link>https://community.qlik.com/t5/QlikView/Combinging-three-tables-in-the-script/m-p/664456#M241981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Did you try my solution?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2014 05:38:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Combinging-three-tables-in-the-script/m-p/664456#M241981</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-06-12T05:38:54Z</dc:date>
    </item>
  </channel>
</rss>

