<?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 Calculation - Resident Table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Calculation-Resident-Table/m-p/970669#M978666</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new to qlikview and am struggling to get this working. I wonder if anyone can help with this (Thanks in advance):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a table_A [amount, description, category1] and another table_B [category1, status1, status2] from two different sources, using a join load in script (category1 will be the key), I can merge them in table_A [amount, description, category1, status1, status2];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I wish to want new variables based on the values of status1 and status2:&lt;/P&gt;&lt;P&gt;eg:&lt;/P&gt;&lt;P&gt;New1 and New2&lt;/P&gt;&lt;P&gt;if(Status1='X', Amount) as New1;&lt;/P&gt;&lt;P&gt;if(Status2='Q', Amount) as New2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The end result should be something like this:&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid rgb(0, 0, 0); width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Amount&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Description&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;Category1&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;Status1&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;Status2&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;New1&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;New2&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;100&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;A&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;X&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Q&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;100&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;-&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;125&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;B&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;X&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;R&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;125&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;125&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;40&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;C&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Y&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;R&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;-&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;40&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These is the script I used, but it produces a lot of duplicates, please advice!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table_A:&lt;/P&gt;&lt;P&gt;LOAD Amount, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Description, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Category1&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Join (Table_A)&lt;/P&gt;&lt;P&gt;LOAD Category1, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Status1, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Status2&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet2);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;if(Status1='X', Amount) as New1,&lt;/P&gt;&lt;P&gt;if(Status2='Q', Amount) as New2&lt;/P&gt;&lt;P&gt;Resident Table_A;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Aug 2015 10:44:25 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-08-21T10:44:25Z</dc:date>
    <item>
      <title>Calculation - Resident Table</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-Resident-Table/m-p/970669#M978666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new to qlikview and am struggling to get this working. I wonder if anyone can help with this (Thanks in advance):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a table_A [amount, description, category1] and another table_B [category1, status1, status2] from two different sources, using a join load in script (category1 will be the key), I can merge them in table_A [amount, description, category1, status1, status2];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I wish to want new variables based on the values of status1 and status2:&lt;/P&gt;&lt;P&gt;eg:&lt;/P&gt;&lt;P&gt;New1 and New2&lt;/P&gt;&lt;P&gt;if(Status1='X', Amount) as New1;&lt;/P&gt;&lt;P&gt;if(Status2='Q', Amount) as New2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The end result should be something like this:&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid rgb(0, 0, 0); width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Amount&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Description&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;Category1&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;Status1&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;Status2&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;New1&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;New2&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;100&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;A&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;X&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Q&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;100&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;-&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;125&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;B&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;X&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;R&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;125&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;125&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;40&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;C&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Y&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;R&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;-&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;40&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These is the script I used, but it produces a lot of duplicates, please advice!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table_A:&lt;/P&gt;&lt;P&gt;LOAD Amount, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Description, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Category1&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Join (Table_A)&lt;/P&gt;&lt;P&gt;LOAD Category1, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Status1, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Status2&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet2);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;if(Status1='X', Amount) as New1,&lt;/P&gt;&lt;P&gt;if(Status2='Q', Amount) as New2&lt;/P&gt;&lt;P&gt;Resident Table_A;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2015 10:44:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-Resident-Table/m-p/970669#M978666</guid>
      <dc:creator />
      <dc:date>2015-08-21T10:44:25Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation - Resident Table</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-Resident-Table/m-p/970670#M978668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Duplication of Amounts might occur if you have multiple lines in Sheet2 per Category1 value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you checked the content of your excel files?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2015 10:59:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-Resident-Table/m-p/970670#M978668</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-08-21T10:59:17Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation - Resident Table</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-Resident-Table/m-p/970671#M978670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In Sheet2, Category1 is unique.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2015 11:01:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-Resident-Table/m-p/970671#M978670</guid>
      <dc:creator />
      <dc:date>2015-08-21T11:01:29Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation - Resident Table</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-Resident-Table/m-p/970672#M978672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;may be the category1 filed values are not identical?&lt;/P&gt;&lt;P&gt;try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table_A:&lt;/P&gt;&lt;P&gt;LOAD Amount, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Description, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;Trim(Category1) as Category1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Join (Table_A)&lt;/P&gt;&lt;P&gt;LOAD &lt;STRONG&gt;Trim(Category1) as Category1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Status1, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Status2&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet2);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;if(Status1='X', Amount) as New1,&lt;/P&gt;&lt;P&gt;if(Status2='Q', Amount) as New2&lt;/P&gt;&lt;P&gt;Resident Table_A;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2015 11:06:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-Resident-Table/m-p/970672#M978672</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2015-08-21T11:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation - Resident Table</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-Resident-Table/m-p/970673#M978673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Make sure that Your category 1 and category 2 fields have matched data else it will create Cartesian join&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2015 11:11:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-Resident-Table/m-p/970673#M978673</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2015-08-21T11:11:00Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation - Resident Table</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-Resident-Table/m-p/970674#M978674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your reply, but this (trim) is not working either.&lt;/P&gt;&lt;P&gt;I do not know what Cartesian join is, but here is the result from my script:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="help001.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/96662_help001.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2015 11:15:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-Resident-Table/m-p/970674#M978674</guid>
      <dc:creator />
      <dc:date>2015-08-21T11:15:02Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation - Resident Table</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-Resident-Table/m-p/970675#M978675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You must use left join (Table_A) instead of join (this is inner join) . You want only a match between the files&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2015 11:16:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-Resident-Table/m-p/970675#M978675</guid>
      <dc:creator>Marcellino_Groothof</dc:creator>
      <dc:date>2015-08-21T11:16:22Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation - Resident Table</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-Resident-Table/m-p/970676#M978676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;Table_A:&lt;/P&gt;&lt;P&gt;LOAD Amount, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Description, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Category1&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Join (Table_A)&lt;/P&gt;&lt;P&gt;LOAD Category1, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Status1, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Status2&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet2);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;noconcatenate&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;final:&lt;/P&gt;&lt;P&gt;Load *, &lt;/P&gt;&lt;P&gt;if(Status1='X', Amount) as New1,&lt;/P&gt;&lt;P&gt;if(Status2='Q', Amount) as New2&lt;/P&gt;&lt;P&gt;Resident Table_A;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop table Table_A;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2015 11:16:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-Resident-Table/m-p/970676#M978676</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2015-08-21T11:16:56Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation - Resident Table</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-Resident-Table/m-p/970677#M978677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh wow, that solves the problem! Thank you so much!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a short explanation to what was the issue and why is it working now?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2015 11:22:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-Resident-Table/m-p/970677#M978677</guid>
      <dc:creator />
      <dc:date>2015-08-21T11:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation - Resident Table</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-Resident-Table/m-p/970678#M978680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Glad that it solved the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By default, qlikview tries to concatenate tables that are having identical fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so by saying noconcatenate, this action will be prevented and the two tables exist separately.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;finally , after completing all the data manipulation like adding expressions etc in the resultant table,,we can drop the base table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hth&lt;/P&gt;&lt;P&gt;Sasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2015 11:28:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-Resident-Table/m-p/970678#M978680</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2015-08-21T11:28:36Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation - Resident Table</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-Resident-Table/m-p/970679#M978681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, thank you again for the solution and the explanation. Knowing this would be very helpful.&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;William&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2015 11:31:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-Resident-Table/m-p/970679#M978681</guid>
      <dc:creator />
      <dc:date>2015-08-21T11:31:35Z</dc:date>
    </item>
  </channel>
</rss>

