<?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: Overwrite fields in existing rows in a table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Overwrite-fields-in-existing-rows-in-a-table/m-p/432701#M161261</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey thanks for the reply. So, I see what you're saying, but don't you mean to use concatenate instead of join? I would think that if you used join, it wouldn't load anything because QlikView would look at the record and score field, not find a matching record, and go on to the next one. With concatenate, it would create multiple rows and then at the end take the max. Does that sound right?&lt;/P&gt;&lt;P&gt;Anyway I'll give it a shot. Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eric&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Dec 2012 16:56:53 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-12-13T16:56:53Z</dc:date>
    <item>
      <title>Overwrite fields in existing rows in a table</title>
      <link>https://community.qlik.com/t5/QlikView/Overwrite-fields-in-existing-rows-in-a-table/m-p/432699#M161259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all. So I have a data table that is an aggregate of several similar data sets. Let's say I have 5 spreadsheets, each from a different month. Each spreadsheet has a numeric score tied to a record ID. I basically want to load an aggregate table that contains all record IDs, but only the max numeric value across all spreadsheets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So say my data sets are like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jan:&lt;/P&gt;&lt;P&gt;LOAD * Inline&lt;/P&gt;&lt;P&gt;[Record, Score&lt;/P&gt;&lt;P&gt;A, 1&lt;/P&gt;&lt;P&gt;B, 2];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Feb:&lt;/P&gt;&lt;P&gt;LOAD * Inline&lt;/P&gt;&lt;P&gt;[Record, Score&lt;/P&gt;&lt;P&gt;A, 2&lt;/P&gt;&lt;P&gt;B, 3];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mar:&lt;/P&gt;&lt;P&gt;LOAD * Inline&lt;/P&gt;&lt;P&gt;[Record, Score&lt;/P&gt;&lt;P&gt;A, 0&lt;/P&gt;&lt;P&gt;B, 5];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want the final result set to look like this:&lt;/P&gt;&lt;P&gt;Final:&lt;/P&gt;&lt;P&gt;[Record, Score&lt;/P&gt;&lt;P&gt;A, 2&lt;/P&gt;&lt;P&gt;B, 5];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas? Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eric&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Dec 2012 22:13:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Overwrite-fields-in-existing-rows-in-a-table/m-p/432699#M161259</guid>
      <dc:creator />
      <dc:date>2012-12-12T22:13:17Z</dc:date>
    </item>
    <item>
      <title>Re: Overwrite fields in existing rows in a table</title>
      <link>https://community.qlik.com/t5/QlikView/Overwrite-fields-in-existing-rows-in-a-table/m-p/432700#M161260</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;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jan:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * Inline&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Record, Score&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A, 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;B, 2];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Join(Jan)&lt;/P&gt;&lt;P&gt;LOAD * Inline&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Record, Score&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A, 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;B, 3];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Join(Jan)&lt;/P&gt;&lt;P&gt;LOAD * Inline&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Record, Score&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A, 0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;B, 5];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;Load Max(Score) as MaxScore,Record Resident Jan Group by Record;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Dec 2012 22:26:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Overwrite-fields-in-existing-rows-in-a-table/m-p/432700#M161260</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2012-12-12T22:26:17Z</dc:date>
    </item>
    <item>
      <title>Re: Overwrite fields in existing rows in a table</title>
      <link>https://community.qlik.com/t5/QlikView/Overwrite-fields-in-existing-rows-in-a-table/m-p/432701#M161261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey thanks for the reply. So, I see what you're saying, but don't you mean to use concatenate instead of join? I would think that if you used join, it wouldn't load anything because QlikView would look at the record and score field, not find a matching record, and go on to the next one. With concatenate, it would create multiple rows and then at the end take the max. Does that sound right?&lt;/P&gt;&lt;P&gt;Anyway I'll give it a shot. Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eric&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Dec 2012 16:56:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Overwrite-fields-in-existing-rows-in-a-table/m-p/432701#M161261</guid>
      <dc:creator />
      <dc:date>2012-12-13T16:56:53Z</dc:date>
    </item>
  </channel>
</rss>

