<?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: Read data from two files and generate a single file in Connectivity &amp; Data Prep</title>
    <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Read-data-from-two-files-and-generate-a-single-file/m-p/1696880#M5186</link>
    <description>&lt;P&gt;&lt;SPAN&gt;lib://AttachedFiles is not a sharepoint. See attached pic.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 27 Apr 2020 02:27:03 GMT</pubDate>
    <dc:creator>user8</dc:creator>
    <dc:date>2020-04-27T02:27:03Z</dc:date>
    <item>
      <title>Read data from two files and generate a single file</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Read-data-from-two-files-and-generate-a-single-file/m-p/1696304#M5182</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have two files and want to read specific columns and produce a single file based on the matching columns. For e.g.&lt;/P&gt;&lt;P&gt;--&amp;gt; File1&lt;/P&gt;&lt;TABLE border="1" width="44.41677044416771%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="33.333333333333336%"&gt;Emp No&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;Emp Name&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="33.333333333333336%"&gt;123&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;Steve&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="33.333333333333336%"&gt;456&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;Bryan&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;--&amp;gt; File2&lt;/SPAN&gt;&lt;/P&gt;&lt;TABLE border="1" width="44.41677044416771%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="33.333333333333336%"&gt;Emp No&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;Product&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="33.333333333333336%"&gt;123&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;Samsung&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="33.333333333333336%"&gt;456&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;Apple&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;--&amp;gt; File3 (Desired output)&lt;/SPAN&gt;&lt;/P&gt;&lt;TABLE border="1" width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="33.333333333333336%"&gt;Emp No&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;Emp Name&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;Product&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN&gt;123&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;&lt;SPAN&gt;Steve&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;&lt;SPAN&gt;Samsung&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN&gt;456&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;&lt;SPAN&gt;Bryan&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;&lt;SPAN&gt;Apple&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is this possible and can you share the script?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Dec 2021 20:26:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Read-data-from-two-files-and-generate-a-single-file/m-p/1696304#M5182</guid>
      <dc:creator>user8</dc:creator>
      <dc:date>2021-12-21T20:26:43Z</dc:date>
    </item>
    <item>
      <title>Re: Read data from two files and generate a single file</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Read-data-from-two-files-and-generate-a-single-file/m-p/1696319#M5183</link>
      <description>&lt;P&gt;If you find better answer please aslo share with me.&lt;/P&gt;&lt;P&gt;T1:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;&lt;BR /&gt;Eno,EName&lt;BR /&gt;123,Steve&lt;BR /&gt;456,Bryan&lt;BR /&gt;];&lt;BR /&gt;Inner Join&lt;BR /&gt;&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;&lt;BR /&gt;Eno,Product&lt;BR /&gt;123,Samsung&lt;BR /&gt;456,Apple&lt;BR /&gt;];&lt;BR /&gt;Try this&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;T1:&lt;BR /&gt;LOAD * inline [&lt;/P&gt;&lt;P&gt;Eno,Ename,Salary&lt;BR /&gt;123,Steve,55000&lt;BR /&gt;456,BRYAN,90000&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;T2:&lt;BR /&gt;LOAD * inline [&lt;/P&gt;&lt;P&gt;Eno,Product,UnitCost&lt;BR /&gt;123,Samsung,20000&lt;BR /&gt;456,Apple,60000&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;Temp:&lt;BR /&gt;LOAD Eno,Ename Resident T1;&lt;BR /&gt;Inner Join&lt;BR /&gt;Temp1:&lt;BR /&gt;LOAD Eno,Product Resident T2;&lt;/P&gt;&lt;P&gt;DROP Table T1;&lt;BR /&gt;DROP Table T2;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2020 04:50:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Read-data-from-two-files-and-generate-a-single-file/m-p/1696319#M5183</guid>
      <dc:creator>ArjunChandra</dc:creator>
      <dc:date>2020-04-24T04:50:01Z</dc:date>
    </item>
    <item>
      <title>Re: Read data from two files and generate a single file</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Read-data-from-two-files-and-generate-a-single-file/m-p/1696454#M5184</link>
      <description>&lt;P&gt;Below is my script.&amp;nbsp;&lt;/P&gt;&lt;P&gt;File1 and File2 will change daily but when I reload the app it does not pick up the latest File1 and File2 located in lib://AttachedFiles. Any idea?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;File1:
Load 
number
name
From [lib://AttachedFiles/File1.xlsx]
Store File1 into [lib://Folder/File1.qvd] (qvd);

Inner Join 

Load 
number,
product
From [lib://AttachedFiles/File2.xlsx]
Store File1 into [lib://Folder/File1.qvd] (qvd);&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 24 Apr 2020 10:54:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Read-data-from-two-files-and-generate-a-single-file/m-p/1696454#M5184</guid>
      <dc:creator>user8</dc:creator>
      <dc:date>2020-04-24T10:54:51Z</dc:date>
    </item>
    <item>
      <title>Re: Read data from two files and generate a single file</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Read-data-from-two-files-and-generate-a-single-file/m-p/1696507#M5185</link>
      <description>&lt;P&gt;Hi. Is this (&lt;SPAN&gt;lib://AttachedFiles&lt;/SPAN&gt;) a SharePoint? If so, files are checked-in?&lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2020 13:24:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Read-data-from-two-files-and-generate-a-single-file/m-p/1696507#M5185</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2020-04-24T13:24:41Z</dc:date>
    </item>
    <item>
      <title>Re: Read data from two files and generate a single file</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Read-data-from-two-files-and-generate-a-single-file/m-p/1696880#M5186</link>
      <description>&lt;P&gt;&lt;SPAN&gt;lib://AttachedFiles is not a sharepoint. See attached pic.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Apr 2020 02:27:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Read-data-from-two-files-and-generate-a-single-file/m-p/1696880#M5186</guid>
      <dc:creator>user8</dc:creator>
      <dc:date>2020-04-27T02:27:03Z</dc:date>
    </item>
  </channel>
</rss>

