<?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 Concatenation help needed! in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Concatenation-help-needed/m-p/143600#M22801</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See attached. You had 2 problems there:&lt;/P&gt;&lt;P&gt;1. The 2 tables had exactly the same strucutre, so by default they were automatically concatenated. You need to use prefix NOCONCATENATE to avoid it.&lt;/P&gt;&lt;P&gt;2. One of the fields was renamed in one place but not in the other, which caused "Field not found" error.&lt;/P&gt;&lt;P&gt;The logic that you have there will append the first list with the missing records from the second list. Not sure about "overriding" that you'd mentioned...&lt;/P&gt;&lt;P&gt;Oleg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 May 2009 22:01:57 GMT</pubDate>
    <dc:creator>Oleg_Troyansky</dc:creator>
    <dc:date>2009-05-08T22:01:57Z</dc:date>
    <item>
      <title>Concatenation help needed!</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenation-help-needed/m-p/143591#M22792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;I have a problem in my code where we are trying to concatenate two tables and create a primary key:&lt;/P&gt;&lt;P&gt;DepartmSys:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Sys &amp;amp; Departm &lt;B&gt;as&lt;/B&gt; %DepartmSysKey,&lt;/P&gt;&lt;P&gt;Sys &lt;B&gt;as&lt;/B&gt; DepartmSys,&lt;/P&gt;&lt;P&gt;Departm &lt;B&gt;as&lt;/B&gt; Dept,&lt;/P&gt;&lt;P&gt;Flag&lt;/P&gt;&lt;P&gt;&lt;B&gt;FROM&lt;/B&gt;Sys &amp;amp; Dept &lt;B&gt;as&lt;/B&gt; %DepartmSysKey,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[file.xls] (biff, embedded labels, table is Sheet1$);&lt;I&gt;&lt;/I&gt;&lt;/P&gt;&lt;P style="font-style: italic"&gt;b:&lt;/P&gt;&lt;P style="font-style: italic"&gt;LOAD&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Sys &lt;B&gt;as&lt;/B&gt; DepartmSys,&lt;/P&gt;&lt;P&gt;Dept,&lt;/P&gt;&lt;P&gt;0 &lt;B&gt;AS&lt;/B&gt; Flag&lt;/P&gt;&lt;P style="font-weight: bold"&gt;RESIDENT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TableC; &lt;B&gt;&lt;/B&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE&lt;/P&gt;&lt;P&gt;(DepartmSys) &lt;B&gt;&lt;/B&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;* &lt;B&gt;RESIDENT&lt;/B&gt; b &lt;B&gt;&lt;/B&gt;&lt;/P&gt;&lt;P&gt;where&lt;/P&gt;&lt;P&gt;&lt;B&gt;NOT&lt;/B&gt; Exists(%DepartmSysKey);&lt;/P&gt;&lt;P&gt;-------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;I was wondering if anyone would have some ideas on this?&lt;/P&gt;&lt;P&gt;Thanks in advance &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;bc&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 May 2009 18:26:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenation-help-needed/m-p/143591#M22792</guid>
      <dc:creator />
      <dc:date>2009-05-07T18:26:45Z</dc:date>
    </item>
    <item>
      <title>Concatenation help needed!</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenation-help-needed/m-p/143592#M22793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, I see 2 problems:&lt;/P&gt;&lt;P&gt;1. You are not calculating your key in the table "b" (or, the order of lines got messed up in your message).&lt;/P&gt;&lt;P&gt;2. You can't use not exists() logic in this case - as a field, the value would exist in one or the other table. You should use a different syntax. Try the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;DepartmSys:&lt;BR /&gt;LOAD&lt;BR /&gt;Sys &amp;amp; Departm &lt;B&gt;as&lt;/B&gt; %DepartmSysKey,&lt;BR /&gt;Sys &lt;B&gt;as&lt;/B&gt; DepartmSys,&lt;BR /&gt;Departm &lt;B&gt;as&lt;/B&gt; Dept,&lt;BR /&gt;Flag&lt;BR /&gt;&lt;BR /&gt; &lt;B&gt;FROM&lt;/B&gt; [file.xls] (biff, embedded labels, table is Sheet1$);&lt;I&gt;&lt;BR /&gt;b:&lt;BR /&gt;&lt;BR /&gt; LOAD&lt;BR /&gt;&lt;/I&gt;&lt;BR /&gt;Sys &lt;B&gt;as&lt;/B&gt; DepartmSys,&lt;BR /&gt;Dept,&lt;BR /&gt;0 &lt;B&gt;AS&lt;/B&gt; Flag&lt;BR /&gt;&lt;B&gt;RESIDENT&lt;/B&gt;&lt;BR /&gt;&lt;BR /&gt;TableC; &lt;B&gt;&lt;/B&gt;&lt;BR /&gt;&lt;BR /&gt;CONCATENATE&lt;BR /&gt;(DepartmSys) &lt;B&gt;&lt;/B&gt;&lt;BR /&gt;LOAD&lt;BR /&gt;*,&lt;BR /&gt;Sys &amp;amp; Dept &lt;B&gt;as&lt;/B&gt; %DepartmSysKey&lt;BR /&gt;&lt;B&gt;RESIDENT&lt;/B&gt; b &lt;B&gt;&lt;/B&gt;&lt;BR /&gt;where&lt;BR /&gt;&lt;B&gt;NOT&lt;/B&gt; Exists(%DepartmSysKey, Sys &amp;amp; Dept);&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 May 2009 21:25:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenation-help-needed/m-p/143592#M22793</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2009-05-07T21:25:51Z</dc:date>
    </item>
    <item>
      <title>Concatenation help needed!</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenation-help-needed/m-p/143593#M22794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Oleg,&lt;/P&gt;&lt;P&gt;When this syntax is used it says that the DepartmSys table cannot be found for some reason!&lt;/P&gt;&lt;P&gt;Any thoughts?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 May 2009 22:32:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenation-help-needed/m-p/143593#M22794</guid>
      <dc:creator />
      <dc:date>2009-05-07T22:32:11Z</dc:date>
    </item>
    <item>
      <title>Concatenation help needed!</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenation-help-needed/m-p/143594#M22795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can you upload your document or copy your script completely?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 May 2009 22:37:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenation-help-needed/m-p/143594#M22795</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2009-05-07T22:37:01Z</dc:date>
    </item>
    <item>
      <title>Concatenation help needed!</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenation-help-needed/m-p/143595#M22796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P style="font-style: italic"&gt;&lt;/P&gt;&lt;P style="font-style: italic"&gt;DepartmentSystem:&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;LOAD&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;System&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&amp;amp; Department &lt;B&gt;as&lt;/B&gt; %DepartmentSystemsKey &lt;P&gt;,&lt;/P&gt;&lt;P&gt;System&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;B&gt;as&lt;/B&gt; DepartmentSystem &lt;P&gt;,&lt;/P&gt;&lt;P&gt;Department&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;B&gt;as&lt;/B&gt; Dept &lt;P&gt;,&lt;/P&gt;&lt;P&gt;Flag&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;FROM&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;X&gt; (biff, embedded labels, table is Sheet1$) &lt;P&gt;;&lt;/P&gt;&lt;I&gt;&lt;/I&gt;&lt;P style="font-style: italic"&gt;b:&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;LOAD&lt;/P&gt;&lt;P&gt;System&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;B&gt;as&lt;/B&gt; DepartmentSystem &lt;P&gt;,&lt;/P&gt;&lt;P&gt;Dept&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;B&gt;AS&lt;/B&gt; &lt;P&gt;Flag&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;RESIDENT&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TableCatalogue;&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;CONCATENATE&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(DepartmentSystem)&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;LOAD&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;* &lt;P&gt;,&lt;/P&gt;&lt;P&gt;System&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&amp;amp; Dept &lt;B&gt;as&lt;/B&gt; &lt;P&gt;%DepartmentSystemsKey&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;RESIDENT&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;B&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;where&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;B&gt;NOT&lt;/B&gt; EXISTS(%DepartmentSystemsKey, System &amp;amp; Dept) &lt;P&gt;;&lt;/P&gt;&lt;P&gt;This is the code (ps, changed field names slightly) I used and the error msg was as follows:&lt;/P&gt;&lt;P&gt;Table not found&lt;/P&gt;&lt;P&gt;CONCATENATE(DepartmentSystem)......etc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for help &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;/X&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 May 2009 22:40:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenation-help-needed/m-p/143595#M22796</guid>
      <dc:creator />
      <dc:date>2009-05-07T22:40:46Z</dc:date>
    </item>
    <item>
      <title>Concatenation help needed!</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenation-help-needed/m-p/143596#M22797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One of the two:&lt;/P&gt;&lt;P&gt;1. Either you spelled your table name differently (since you renamed your fields slightly, it's hard to say). For example, I noticed, that your temporary table is called "b" in one place and "B" in another - could that be your problem? Table Names are case sensitive...&lt;/P&gt;&lt;P&gt;2. Or you have another table loaded before DepartmentSystem, with the same set of fields, which causes your loaded data to be automatically concatenated with the previously loaded data under another, previously specified, table name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another thing you might need to do is enclose the field name into single quotes within EXISTS:&lt;/P&gt;&lt;P&gt;&lt;B&gt;NOT EXISTS('%DepartmentSystemsKey&lt;/B&gt;', System &amp;amp; Dept)&lt;/P&gt;&lt;P style="font-weight: bold"&gt;cheers,&lt;/P&gt;&lt;P style="font-weight: bold"&gt;Oleg&lt;BR /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 May 2009 22:53:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenation-help-needed/m-p/143596#M22797</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2009-05-07T22:53:06Z</dc:date>
    </item>
    <item>
      <title>Concatenation help needed!</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenation-help-needed/m-p/143597#M22798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P style="font-style: italic"&gt;&lt;/P&gt;&lt;P style="font-style: italic"&gt;Hi Oleg,&lt;/P&gt;&lt;P style="font-style: italic"&gt;The table loads but does not give the answers we would expect to see unfortunately..This is the complete page script, I don't know if this would help or not:&lt;/P&gt;&lt;P style="font-style: italic"&gt;&lt;/P&gt;&lt;P style="font-style: italic"&gt;Once again, I appreciate your help &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P style="font-style: italic"&gt;TableCatalogue:&lt;BR /&gt;LOAD&lt;BR /&gt; CatalogueId,&lt;BR /&gt; LocalityDesc AS Location,&lt;BR /&gt; SystemShortName as System,&lt;BR /&gt; SystemShortName as irSystem,&lt;BR /&gt; UnitDesc,&lt;BR /&gt; IF(UnitDesc = 'Debt and Treasury Technology' , 1, 0) as DTT_Flag,&lt;BR /&gt; UnitDesc as %UnitJoin,&lt;BR /&gt; DepartmentDesc as %DeptJoin,&lt;BR /&gt; DepartmentDesc as Dept,&lt;BR /&gt; if(index(DepartmentDesc, ' EMEA', -1)&amp;gt;0, left(DepartmentDesc,index(DepartmentDesc, ' EMEA', -1)),&lt;BR /&gt; if(index(DepartmentDesc, ' AP', -1)&amp;gt;0, left(DepartmentDesc,index(DepartmentDesc, ' AP', -1)),&lt;BR /&gt; if(index(DepartmentDesc, ' AM', -1)&amp;gt;0, left(DepartmentDesc,index(DepartmentDesc, ' AM', -1)),&lt;BR /&gt; DepartmentDesc&lt;BR /&gt; )&lt;BR /&gt; )&lt;BR /&gt;) as DeptShort,&lt;BR /&gt; DepartmentHead as DeptHead,&lt;BR /&gt; TeamDesc as Team,&lt;BR /&gt; ApplicationManager,&lt;BR /&gt; LastUpdatedDate as GelLastUpdatedDate&lt;BR /&gt;WHERE&lt;BR /&gt; EXISTS (CatalogueId);&lt;BR /&gt;SELECT&lt;BR /&gt; CatalogueId,&lt;BR /&gt; LocalityDesc,&lt;BR /&gt; SystemShortName,&lt;BR /&gt; UnitDesc,&lt;BR /&gt; DepartmentDesc,&lt;BR /&gt; DepartmentHead,&lt;BR /&gt; TeamDesc,&lt;BR /&gt; ApplicationManager,&lt;BR /&gt; LastUpdatedDate&lt;BR /&gt;FROM&lt;BR /&gt; GEL.dbo.vw_Catalogue&lt;/P&gt;&lt;P style="font-style: italic"&gt;WHERE&lt;BR /&gt; LastUpdatedDate &amp;gt; dateadd(year, -1,convert(datetime,cast(datepart(yy,getUTCDate()) as varchar) + cast('-01-01' as varchar)));;&lt;/P&gt;&lt;P style="font-style: italic"&gt;&lt;BR /&gt;STORE TableCatalogue into Gel.qvd;&lt;/P&gt;&lt;P style="font-style: italic"&gt;&lt;BR /&gt;TableImpactedCatalogue:&lt;BR /&gt;LOAD&lt;BR /&gt; CatalogueId as PrimaryCatalogueId,&lt;BR /&gt; System as ImpactedBySystem&lt;/P&gt;&lt;P style="font-style: italic"&gt;RESIDENT TableCatalogue;&lt;/P&gt;&lt;P style="font-style: italic"&gt;DepartmentSystem:&lt;BR /&gt;LOAD&lt;BR /&gt; System &amp;amp; Department as %DepartmentSystemsKey,&lt;BR /&gt; System as DepartmentSystem,&lt;BR /&gt; Department as Dept,&lt;BR /&gt; Flag&lt;BR /&gt;FROM &lt;X&gt; (biff, embedded labels, table is Sheet1$);&lt;/X&gt;&lt;/P&gt;&lt;P style="font-style: italic"&gt;B:&lt;BR /&gt;LOAD&lt;BR /&gt; System as DepartmentSystem,&lt;BR /&gt; Dept,&lt;BR /&gt; 0 AS Flag&lt;BR /&gt;RESIDENT TableCatalogue;&lt;/P&gt;&lt;P style="font-style: italic"&gt;CONCATENATE (DepartmentSystem)&lt;BR /&gt;LOAD&lt;BR /&gt; DepartmentSystem &amp;amp; Dept as %DepartmentSystemsKey,&lt;BR /&gt;*&lt;BR /&gt;RESIDENT B&lt;BR /&gt;where NOT EXISTS('%DepartmentSystemsKey', DepartmentSystem &amp;amp; Dept);&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 May 2009 16:29:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenation-help-needed/m-p/143597#M22798</guid>
      <dc:creator />
      <dc:date>2009-05-08T16:29:51Z</dc:date>
    </item>
    <item>
      <title>Concatenation help needed!</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenation-help-needed/m-p/143598#M22799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the expected result? you never explained what you are trying to do...&lt;/P&gt;&lt;P&gt;Oleg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 May 2009 20:25:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenation-help-needed/m-p/143598#M22799</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2009-05-08T20:25:55Z</dc:date>
    </item>
    <item>
      <title>Concatenation help needed!</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenation-help-needed/m-p/143599#M22800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oleg,&lt;/P&gt;&lt;P&gt;We have two lists of data from different sources (one excel and the other a resident table) We would like one table to overwrite the other and update with additional data.&lt;/P&gt;&lt;P&gt;We have attached a very small example qvw that I have created. (ps - in this example the data is from two inline tables)&lt;/P&gt;&lt;P&gt;When this tries to reload it now says 'table not found' as you will see.&lt;/P&gt;&lt;P&gt;Any info as to why this might be happening would be great.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 May 2009 21:29:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenation-help-needed/m-p/143599#M22800</guid>
      <dc:creator />
      <dc:date>2009-05-08T21:29:41Z</dc:date>
    </item>
    <item>
      <title>Concatenation help needed!</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenation-help-needed/m-p/143600#M22801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See attached. You had 2 problems there:&lt;/P&gt;&lt;P&gt;1. The 2 tables had exactly the same strucutre, so by default they were automatically concatenated. You need to use prefix NOCONCATENATE to avoid it.&lt;/P&gt;&lt;P&gt;2. One of the fields was renamed in one place but not in the other, which caused "Field not found" error.&lt;/P&gt;&lt;P&gt;The logic that you have there will append the first list with the missing records from the second list. Not sure about "overriding" that you'd mentioned...&lt;/P&gt;&lt;P&gt;Oleg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 May 2009 22:01:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenation-help-needed/m-p/143600#M22801</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2009-05-08T22:01:57Z</dc:date>
    </item>
  </channel>
</rss>

