<?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: Upload new data and replace old one in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Upload-new-data-and-replace-old-one/m-p/729313#M673398</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I meant that should be unique "a" values, and "b" values from the latest load&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 Aug 2014 11:32:16 GMT</pubDate>
    <dc:creator>yura_ratu</dc:creator>
    <dc:date>2014-08-22T11:32:16Z</dc:date>
    <item>
      <title>Upload new data and replace old one</title>
      <link>https://community.qlik.com/t5/QlikView/Upload-new-data-and-replace-old-one/m-p/729305#M673390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I load new data every day and need not just concatenate it to previous one, but also make changes in old data according to a new data. Here is an example of tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load * Inline [&lt;/P&gt;&lt;P&gt;a, b&lt;/P&gt;&lt;P&gt;1,2&lt;/P&gt;&lt;P&gt;2,3&lt;/P&gt;&lt;P&gt;3,8&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;load * Inline [&lt;/P&gt;&lt;P&gt;a, b&lt;/P&gt;&lt;P&gt;1,5&lt;/P&gt;&lt;P&gt;2,3&lt;/P&gt;&lt;P&gt;4,3&lt;/P&gt;&lt;P&gt;5,4&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As a result of joining/concatenating them I would like to have&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a, b&lt;/P&gt;&lt;P&gt;1,5&lt;/P&gt;&lt;P&gt;2,3&lt;/P&gt;&lt;P&gt;3,8&lt;/P&gt;&lt;P&gt;4,3&lt;/P&gt;&lt;P&gt;5,4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I do that?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Aug 2014 10:58:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Upload-new-data-and-replace-old-one/m-p/729305#M673390</guid>
      <dc:creator>yura_ratu</dc:creator>
      <dc:date>2014-08-22T10:58:15Z</dc:date>
    </item>
    <item>
      <title>Re: Upload new data and replace old one</title>
      <link>https://community.qlik.com/t5/QlikView/Upload-new-data-and-replace-old-one/m-p/729306#M673391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here it is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A:&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;load * Inline [&lt;/P&gt;&lt;P&gt;a, b&lt;/P&gt;&lt;P&gt;1,2&lt;/P&gt;&lt;P&gt;2,3&lt;/P&gt;&lt;P&gt;3,8&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;B:&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;load * Inline [&lt;/P&gt;&lt;P&gt;a, b&lt;/P&gt;&lt;P&gt;1,5&lt;/P&gt;&lt;P&gt;2,3&lt;/P&gt;&lt;P&gt;4,3&lt;/P&gt;&lt;P&gt;5,4&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AB:&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;LOAD * Resident A;&lt;/P&gt;&lt;P&gt;Concatenate&lt;/P&gt;&lt;P&gt;LOAD * Resident B;&lt;/P&gt;&lt;P&gt;DROP Tables A, B;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left Join&lt;/P&gt;&lt;P&gt;LOAD a, Max(b) as M Resident AB Group by a;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Final:&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;LOAD * Resident AB Where M = b;&lt;/P&gt;&lt;P&gt;DROP Table AB;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Aug 2014 11:04:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Upload-new-data-and-replace-old-one/m-p/729306#M673391</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2014-08-22T11:04:41Z</dc:date>
    </item>
    <item>
      <title>Re: Upload new data and replace old one</title>
      <link>https://community.qlik.com/t5/QlikView/Upload-new-data-and-replace-old-one/m-p/729307#M673392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A:&lt;/P&gt;&lt;P&gt;load * Inline [&lt;/P&gt;&lt;P&gt;a, b&lt;/P&gt;&lt;P&gt;1,2&lt;/P&gt;&lt;P&gt;2,3&lt;/P&gt;&lt;P&gt;3,8&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt; Concatenate &lt;/P&gt;&lt;P&gt;B:&lt;/P&gt;&lt;P&gt;load * Inline [&lt;/P&gt;&lt;P&gt;a, b&lt;/P&gt;&lt;P&gt;1,5&lt;/P&gt;&lt;P&gt;2,3&lt;/P&gt;&lt;P&gt;4,3&lt;/P&gt;&lt;P&gt;5,4&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;AB:&lt;/P&gt;&lt;P&gt;load distinct a, b&lt;/P&gt;&lt;P&gt;Resident A;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop table A;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Aug 2014 11:12:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Upload-new-data-and-replace-old-one/m-p/729307#M673392</guid>
      <dc:creator />
      <dc:date>2014-08-22T11:12:02Z</dc:date>
    </item>
    <item>
      <title>Re: Upload new data and replace old one</title>
      <link>https://community.qlik.com/t5/QlikView/Upload-new-data-and-replace-old-one/m-p/729308#M673393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Alessandro!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But what if values are not numbers, or number which become both less or more. In final table should be value from second load, not matter what there&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Aug 2014 11:13:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Upload-new-data-and-replace-old-one/m-p/729308#M673393</guid>
      <dc:creator>yura_ratu</dc:creator>
      <dc:date>2014-08-22T11:13:23Z</dc:date>
    </item>
    <item>
      <title>Re: Upload new data and replace old one</title>
      <link>https://community.qlik.com/t5/QlikView/Upload-new-data-and-replace-old-one/m-p/729309#M673394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Result will be&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;1,2&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;1,5&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;2,3&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;3,8&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;4,3&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;5,4&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Aug 2014 11:16:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Upload-new-data-and-replace-old-one/m-p/729309#M673394</guid>
      <dc:creator>yura_ratu</dc:creator>
      <dc:date>2014-08-22T11:16:18Z</dc:date>
    </item>
    <item>
      <title>Re: Upload new data and replace old one</title>
      <link>https://community.qlik.com/t5/QlikView/Upload-new-data-and-replace-old-one/m-p/729310#M673395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try loading in the following order:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;load * Inline [&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;a, b&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;1,5&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;2,3&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;4,3&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;5,4&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;];&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Concatenate &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;load * Inline [&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;a, b&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;1,2&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;2,3&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;3,8&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;]&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;where not exists(a);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Aug 2014 11:20:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Upload-new-data-and-replace-old-one/m-p/729310#M673395</guid>
      <dc:creator>nagaiank</dc:creator>
      <dc:date>2014-08-22T11:20:28Z</dc:date>
    </item>
    <item>
      <title>Re: Upload new data and replace old one</title>
      <link>https://community.qlik.com/t5/QlikView/Upload-new-data-and-replace-old-one/m-p/729311#M673396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You mean the result should be Ordered??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Aug 2014 11:20:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Upload-new-data-and-replace-old-one/m-p/729311#M673396</guid>
      <dc:creator />
      <dc:date>2014-08-22T11:20:33Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Upload new data and replace old one</title>
      <link>https://community.qlik.com/t5/QlikView/Upload-new-data-and-replace-old-one/m-p/729312#M673397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I get exactly the way you asked for the code snippet post my me earlier. Plz. see the screen shot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Aug 2014 11:27:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Upload-new-data-and-replace-old-one/m-p/729312#M673397</guid>
      <dc:creator />
      <dc:date>2014-08-22T11:27:09Z</dc:date>
    </item>
    <item>
      <title>Re: Upload new data and replace old one</title>
      <link>https://community.qlik.com/t5/QlikView/Upload-new-data-and-replace-old-one/m-p/729313#M673398</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I meant that should be unique "a" values, and "b" values from the latest load&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Aug 2014 11:32:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Upload-new-data-and-replace-old-one/m-p/729313#M673398</guid>
      <dc:creator>yura_ratu</dc:creator>
      <dc:date>2014-08-22T11:32:16Z</dc:date>
    </item>
    <item>
      <title>Re: Upload new data and replace old one</title>
      <link>https://community.qlik.com/t5/QlikView/Upload-new-data-and-replace-old-one/m-p/729314#M673399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It works! Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please explain how this "&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;where not exists(a)&lt;/SPAN&gt;" statement works here?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Aug 2014 11:35:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Upload-new-data-and-replace-old-one/m-p/729314#M673399</guid>
      <dc:creator>yura_ratu</dc:creator>
      <dc:date>2014-08-22T11:35:16Z</dc:date>
    </item>
  </channel>
</rss>

