<?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: Merging multiple tables in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332061#M411378</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for responding.&lt;/P&gt;&lt;P&gt;Your suggestion does not deal with the problem - look at your multiple values of 4th 6th and 8th of January.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Alexis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 12 May 2017 06:32:17 GMT</pubDate>
    <dc:creator>alexis</dc:creator>
    <dc:date>2017-05-12T06:32:17Z</dc:date>
    <item>
      <title>Merging multiple tables</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332055#M411372</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 a requirement to read multiple Excel files (all of the same format but produced daily). The idea is that later files are stronger than older files and therefore any matches found, the value from the newer file should be used - the following screen shot should make it easier to understand.. The BLUE tables are my source files and the GREEN is what I want to achieve - instead, the closet I came to the desired result is the RED table where I used OUTER JOIN to join the tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have attached a test application and the 2 excel files &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be hugely appreciated.&lt;/P&gt;&lt;P&gt;Alexis&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="DesiredMerge.jpg" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/163067_DesiredMerge.jpg" style="height: 404px; width: 620px;" /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 May 2017 00:18:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332055#M411372</guid>
      <dc:creator>alexis</dc:creator>
      <dc:date>2017-05-12T00:18:34Z</dc:date>
    </item>
    <item>
      <title>Re: Merging multiple tables</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332056#M411373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, Alexis!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can rename the Price field in Table2 and then left join Table2 to Table1 by two fields (Date, Type). In resulted table use the condition if(Price2&amp;gt;0,Price2,Price1) as Price_res. You should get a table you need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: Using Left Join is appropriate when Table1 is a some of cumulative table (consist of all possible dates needed for your report). If not - there are other ways to solve the task. But, hope this will help you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 May 2017 04:29:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332056#M411373</guid>
      <dc:creator>Sergey_Shuklin</dc:creator>
      <dc:date>2017-05-12T04:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: Merging multiple tables</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332057#M411374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The second way is to create a new table with distinct values of fields Date and Type, then use Left Join from table1 to join Price as Price1 field, do the same for Table2, and then use the condition &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;if(Price2&amp;gt;0,Price2,Price1) as Price_res&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will be more correct than I offered earlier because in that way you don't lose the new dates!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 May 2017 04:37:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332057#M411374</guid>
      <dc:creator>Sergey_Shuklin</dc:creator>
      <dc:date>2017-05-12T04:37:09Z</dc:date>
    </item>
    <item>
      <title>Re: Merging multiple tables</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332058#M411375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A full outer join and a resident load to get what you need:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;[T_Desired Result]:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD Date,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; Type,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; Price as T_Price1&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FROM Table01;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;// Full Outer Join&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Join ([T_Desired Result])&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD Date,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; Type,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; Price as T_Price2&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FROM Table02;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;// Final table with latest Price&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;[Desired Result]:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD Date,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; Type,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; Alt(T_Price2, T_Price1) as Price&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Resident [T_Desired Result];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;DROP Table [T_Desired Result];&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 May 2017 04:48:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332058#M411375</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2017-05-12T04:48:37Z</dc:date>
    </item>
    <item>
      <title>Re: Merging multiple tables</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332059#M411376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Don't take That much pressure and Complex model. You can simply use this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table01:&lt;/P&gt;&lt;P&gt;LOAD Date,&amp;nbsp; Type, Price FROM [Data_2017_05_01.xlsx] (ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Outer Join // This is optional if you have same structure of 2 excels&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Table02:&lt;/P&gt;&lt;P&gt;LOAD Date, Type, Price FROM [Data_2017_05_02.xlsx] (ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And then Create Straight table with fields use expression as Max(Price) meantime change it to Current Style from default to "Pyjama Green" and then Put 1 row for stripes from Style tab&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="163084" alt="Capture.PNG" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/163084_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;I got output as Below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="163083" alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/163083_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;PS - Enclose Attached&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 May 2017 04:57:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332059#M411376</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-05-12T04:57:25Z</dc:date>
    </item>
    <item>
      <title>Re: Merging multiple tables</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332060#M411377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alexis,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Script:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;Table02:&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: green;"&gt;//New table&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: blue; font-size: 9.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;Date&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;, &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;Type&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;, &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;Price&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;Date&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; &amp;amp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;Type&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;Key&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;FROM&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;[Data_2017_05_02.xlsx]&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;&lt;BR /&gt; (&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;ooxml&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;embedded&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;labels&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;table&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;is&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; Sheet1);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;Concatenate&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; Table01:&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: green;"&gt;//Old File&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: blue; font-size: 9.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;Load&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; * &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;Where &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;Not &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;Exists&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;Key&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;);&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: blue; font-size: 9.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;LOAD &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;Date&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;, &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;Type&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;, &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;Price&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;Date&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; &amp;amp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;Type &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;as &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;Key&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;FROM&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;[Data_2017_05_01.xlsx]&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;&lt;BR /&gt; (&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;ooxml&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;embedded &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;labels&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;table &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;is&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; Sheet1);&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: blue; font-size: 9.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;DROP &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;Field &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;Key&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Output:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="163089" alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/163089_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 May 2017 06:08:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332060#M411377</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2017-05-12T06:08:59Z</dc:date>
    </item>
    <item>
      <title>Re: Merging multiple tables</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332061#M411378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for responding.&lt;/P&gt;&lt;P&gt;Your suggestion does not deal with the problem - look at your multiple values of 4th 6th and 8th of January.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Alexis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 May 2017 06:32:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332061#M411378</guid>
      <dc:creator>alexis</dc:creator>
      <dc:date>2017-05-12T06:32:17Z</dc:date>
    </item>
    <item>
      <title>Re: Merging multiple tables</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332062#M411379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sergey,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Conceptually your idea is on the right track.&lt;/P&gt;&lt;P&gt;Like with other suggestions, this is not a 2-table problem but a multi-table problem - I have hundreds of input tables, one for each day.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for responding&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 May 2017 06:34:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332062#M411379</guid>
      <dc:creator>alexis</dc:creator>
      <dc:date>2017-05-12T06:34:13Z</dc:date>
    </item>
    <item>
      <title>Re: Merging multiple tables</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332063#M411380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;True, My apologies. I may not share updated one. So that i attached qvw&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/163100_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 May 2017 06:35:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332063#M411380</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-05-12T06:35:10Z</dc:date>
    </item>
    <item>
      <title>Re: Merging multiple tables</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332064#M411381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Jonathan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your solution works (just as Tamil's below) and I like the use of "Alt" in your approach.&lt;/P&gt;&lt;P&gt;The "problem" that I have is that the solution needs to iterate through hundreds of data files (I just included just 2 data files to simplify the explanation). Can your solution be adapted to work iteratively?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again&lt;/P&gt;&lt;P&gt;Alexis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 May 2017 06:45:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332064#M411381</guid>
      <dc:creator>alexis</dc:creator>
      <dc:date>2017-05-12T06:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: Merging multiple tables</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332065#M411382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333px;"&gt;Thanks Tamil&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Your solution works (just as Jonathan's above) and I like that you included a working QVW with your response.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;The "problem" that I have, as I explained earlier, is that the solution needs to iterate through hundreds of data files (I just included just 2 data files to simplify the explanation). Can your solution be adapted to work iteratively?&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Thanks again&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Alexis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 May 2017 06:47:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332065#M411382</guid>
      <dc:creator>alexis</dc:creator>
      <dc:date>2017-05-12T06:47:29Z</dc:date>
    </item>
    <item>
      <title>Re: Merging multiple tables</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332066#M411383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By the way I am not looking to keep the Max(Price) .&lt;/P&gt;&lt;P&gt;I am looking to keep the latest Price.&lt;/P&gt;&lt;P&gt;rgrds&lt;/P&gt;&lt;P&gt;Alexis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 May 2017 06:52:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332066#M411383</guid>
      <dc:creator>alexis</dc:creator>
      <dc:date>2017-05-12T06:52:45Z</dc:date>
    </item>
    <item>
      <title>Re: Merging multiple tables</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332067#M411384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt;&amp;gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;The "problem" that I have is that the solution needs to iterate through hundreds of data files ...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is certainly possible, but you would have to do it file by file which might be quite slow. It sounds to me like you will need an incremental approach (assuming the files are added daily or monthly). Then you could replace the "file1" load with a load from a qvd, replace the "file2" load with the most recent update and store the result table back into the QVD. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 May 2017 09:51:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332067#M411384</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2017-05-12T09:51:52Z</dc:date>
    </item>
    <item>
      <title>Re: Merging multiple tables</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332068#M411385</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;Your incremental approach with a Master.qvd and then the addition of a new file every day etc will ONLY work if the latest file is the ONLY file that may contain "corrections" to the Master. In other words what if they decide that a value from a file from last week has a correction that needs to be added? I have left that question with the users, because the incremental approach is the one that makes most sense.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again&lt;/P&gt;&lt;P&gt;Alexis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 May 2017 10:04:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332068#M411385</guid>
      <dc:creator>alexis</dc:creator>
      <dc:date>2017-05-12T10:04:31Z</dc:date>
    </item>
    <item>
      <title>Re: Merging multiple tables</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332069#M411386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hi Alexis,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Jonathan suggested the best solution. Consider using incremental load concept in this case. Good luck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 May 2017 10:56:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332069#M411386</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2017-05-12T10:56:44Z</dc:date>
    </item>
    <item>
      <title>Re: Merging multiple tables</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332070#M411387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, Alexis!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use a loop-load if you have a lot of tables.&lt;/P&gt;&lt;P&gt;Please, look at the picture and the attachement below.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="loop_load.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/163250_loop_load.png" style="height: 395px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;The FileTime() function - is your mark for latest file in load. You use it to filter output result.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 May 2017 05:28:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332070#M411387</guid>
      <dc:creator>Sergey_Shuklin</dc:creator>
      <dc:date>2017-05-13T05:28:06Z</dc:date>
    </item>
    <item>
      <title>Re: Merging multiple tables</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332071#M411388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alexis&lt;/P&gt;&lt;P&gt;Have u tried with this syntax &lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 416px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl67" colspan="5" height="20" width="416"&gt;SQL Select * From Intload.xls Where Date_updated &amp;gt; $(vModDate)&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 May 2017 11:07:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332071#M411388</guid>
      <dc:creator />
      <dc:date>2017-05-13T11:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: Merging multiple tables</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332072#M411389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have multiple files Karthik so your suggestion will not apply in this case - thanks for responding&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 May 2017 17:09:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332072#M411389</guid>
      <dc:creator>alexis</dc:creator>
      <dc:date>2017-05-13T17:09:35Z</dc:date>
    </item>
    <item>
      <title>Re: Merging multiple tables</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332073#M411390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the response and sample code.&lt;/P&gt;&lt;P&gt;It works for iterating through a number of files&lt;/P&gt;&lt;P&gt;It does not work for what I wanted to do in terms of which values should show in the final result.&lt;/P&gt;&lt;P&gt;Both Jonathan's and Tamil's suggestions offer the correct result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 May 2017 17:20:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-multiple-tables/m-p/1332073#M411390</guid>
      <dc:creator>alexis</dc:creator>
      <dc:date>2017-05-13T17:20:52Z</dc:date>
    </item>
  </channel>
</rss>

