<?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: Update data in one spreadsheet based off data from another spreadsheet file in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Update-data-in-one-spreadsheet-based-off-data-from-another/m-p/1549439#M440124</link>
    <description>&lt;P&gt;&lt;SPAN&gt;TempKey:&lt;BR /&gt;LOAD Term as TermFile1&lt;BR /&gt;from [...file1...](...);&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Data:&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;LOAD * From [...file2...](...)&lt;BR /&gt;where exists(TermFile1, Term);&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Concatenate (Data)&lt;BR /&gt;LOAD Term, Definition, Calculation&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;from [...file1...](...) where not exists(Term);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Join (Data)&amp;nbsp;&lt;BR /&gt;LOAD Term, Page&lt;BR /&gt;from [...file1...](...)&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;DROP TABLE TempKey;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;</description>
    <pubDate>Tue, 26 Feb 2019 19:59:21 GMT</pubDate>
    <dc:creator>rwunderlich</dc:creator>
    <dc:date>2019-02-26T19:59:21Z</dc:date>
    <item>
      <title>Update data in one spreadsheet based off data from another spreadsheet file</title>
      <link>https://community.qlik.com/t5/QlikView/Update-data-in-one-spreadsheet-based-off-data-from-another/m-p/1548890#M440095</link>
      <description>&lt;P&gt;I have an excel file (file1.xlsx) that contains four columns (Term, Definition, Page and Calculation) and another file (file2.xlsx) with three columns (Term, Definition and Calculation).&amp;nbsp; I want the second file to update the first if it encounters a term that is in both.&amp;nbsp; I want it to update the Term, Definition and Calculation of file1.xlsx.&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Mon, 25 Feb 2019 19:25:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Update-data-in-one-spreadsheet-based-off-data-from-another/m-p/1548890#M440095</guid>
      <dc:creator>justcotto</dc:creator>
      <dc:date>2019-02-25T19:25:17Z</dc:date>
    </item>
    <item>
      <title>Re: Update data in one spreadsheet based off data from another spreadsheet file</title>
      <link>https://community.qlik.com/t5/QlikView/Update-data-in-one-spreadsheet-based-off-data-from-another/m-p/1548900#M440096</link>
      <description>If all terms in file2 exists in file1 you can load file2 first and use exists to load only non-existant terms, ie:&lt;BR /&gt;&lt;BR /&gt;LOAD * From [...file2...](...);&lt;BR /&gt;Concatenate LOAD * from [...file1...](...) where not exists(Term);</description>
      <pubDate>Mon, 25 Feb 2019 20:13:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Update-data-in-one-spreadsheet-based-off-data-from-another/m-p/1548900#M440096</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2019-02-25T20:13:15Z</dc:date>
    </item>
    <item>
      <title>Re: Update data in one spreadsheet based off data from another spreadsheet file</title>
      <link>https://community.qlik.com/t5/QlikView/Update-data-in-one-spreadsheet-based-off-data-from-another/m-p/1548917#M440098</link>
      <description>&lt;P&gt;Dont understand your problem exactly.&lt;/P&gt;&lt;P&gt;In excel 1 you have&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Term, Definition, Page and Calculation&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Excel 2 you have&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Term, Definition and Calculation&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;On which column are you matching values between the excels? And which column or columns in excel 1 do you want o update&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Feb 2019 21:10:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Update-data-in-one-spreadsheet-based-off-data-from-another/m-p/1548917#M440098</guid>
      <dc:creator>dplr-rn</dc:creator>
      <dc:date>2019-02-25T21:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: Update data in one spreadsheet based off data from another spreadsheet file</title>
      <link>https://community.qlik.com/t5/QlikView/Update-data-in-one-spreadsheet-based-off-data-from-another/m-p/1548933#M440100</link>
      <description>&lt;P&gt;A modification to Ruben's answer.&amp;nbsp; You will have to load file1 a second time to get Page values, which I understand are only in File1.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Data:&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;LOAD * From [...file2...](...);&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Concatenate (Data)&lt;BR /&gt;LOAD Term, Definition, Calculation&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;from [...file1...](...) where not exists(Term);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Join (Data)&amp;nbsp;&lt;BR /&gt;LOAD Term, Page&lt;BR /&gt;from [...file1...](...)&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;</description>
      <pubDate>Mon, 25 Feb 2019 23:22:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Update-data-in-one-spreadsheet-based-off-data-from-another/m-p/1548933#M440100</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2019-02-25T23:22:50Z</dc:date>
    </item>
    <item>
      <title>Re: Update data in one spreadsheet based off data from another spreadsheet file</title>
      <link>https://community.qlik.com/t5/QlikView/Update-data-in-one-spreadsheet-based-off-data-from-another/m-p/1549171#M440108</link>
      <description>&lt;P&gt;Hello Friend,&lt;/P&gt;&lt;P&gt;Please help to solve my query.&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Support-Discussions/Last-Cost-and-and-Current-Cost/m-p/1548436#M1315" target="_blank" rel="noopener"&gt;https://community.qlik.com/t5/Qlik-Support-Discussions/Last-Cost-and-and-Current-Cost/m-p/1548436#M1315&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2019 11:57:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Update-data-in-one-spreadsheet-based-off-data-from-another/m-p/1549171#M440108</guid>
      <dc:creator>Vijesh</dc:creator>
      <dc:date>2019-02-26T11:57:56Z</dc:date>
    </item>
    <item>
      <title>Re: Update data in one spreadsheet based off data from another spreadsheet file</title>
      <link>https://community.qlik.com/t5/QlikView/Update-data-in-one-spreadsheet-based-off-data-from-another/m-p/1549424#M440119</link>
      <description>&lt;P&gt;For Excel 1 I would like for the definition and calculation to be updated if a Term is encountered that is in both Excel 1 and 2.&amp;nbsp; Excel 2 has all the correct definitions or standard definitions. Excel 1 may have erroneous data.&amp;nbsp; Excel 2 is used to correct any data that may not be correct in Excel 1.&amp;nbsp; I don't want to bring in all the data from Excel 2, only the corrections.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2019 19:19:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Update-data-in-one-spreadsheet-based-off-data-from-another/m-p/1549424#M440119</guid>
      <dc:creator>justcotto</dc:creator>
      <dc:date>2019-02-26T19:19:32Z</dc:date>
    </item>
    <item>
      <title>Re: Update data in one spreadsheet based off data from another spreadsheet file</title>
      <link>https://community.qlik.com/t5/QlikView/Update-data-in-one-spreadsheet-based-off-data-from-another/m-p/1549439#M440124</link>
      <description>&lt;P&gt;&lt;SPAN&gt;TempKey:&lt;BR /&gt;LOAD Term as TermFile1&lt;BR /&gt;from [...file1...](...);&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Data:&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;LOAD * From [...file2...](...)&lt;BR /&gt;where exists(TermFile1, Term);&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Concatenate (Data)&lt;BR /&gt;LOAD Term, Definition, Calculation&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;from [...file1...](...) where not exists(Term);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Join (Data)&amp;nbsp;&lt;BR /&gt;LOAD Term, Page&lt;BR /&gt;from [...file1...](...)&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;DROP TABLE TempKey;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2019 19:59:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Update-data-in-one-spreadsheet-based-off-data-from-another/m-p/1549439#M440124</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2019-02-26T19:59:21Z</dc:date>
    </item>
  </channel>
</rss>

