<?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 regarding  Resident Load in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/regarding-Resident-Load/m-p/1096620#M932121</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi this mahesh new to qlikview&amp;nbsp; i had loaded table from from excel like this&lt;/P&gt;&lt;P&gt;Old:&lt;/P&gt;&lt;P&gt;LOAD country, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; date, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; price, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; productid, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; source&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;(biff, embedded labels, table is Sheet1$)&amp;nbsp;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want use filter condition and want to derive new table &lt;/P&gt;&lt;P&gt;can i write like this&amp;nbsp; from resident&amp;nbsp; after re loading i&amp;nbsp; am unable to see New table. how to get New table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;New:&lt;/P&gt;&lt;P&gt;load * resident old&amp;nbsp; where source='online' and country='ind'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please correct if my script is wrong thanking you in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>regarding  Resident Load</title>
      <link>https://community.qlik.com/t5/QlikView/regarding-Resident-Load/m-p/1096620#M932121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi this mahesh new to qlikview&amp;nbsp; i had loaded table from from excel like this&lt;/P&gt;&lt;P&gt;Old:&lt;/P&gt;&lt;P&gt;LOAD country, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; date, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; price, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; productid, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; source&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;(biff, embedded labels, table is Sheet1$)&amp;nbsp;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want use filter condition and want to derive new table &lt;/P&gt;&lt;P&gt;can i write like this&amp;nbsp; from resident&amp;nbsp; after re loading i&amp;nbsp; am unable to see New table. how to get New table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;New:&lt;/P&gt;&lt;P&gt;load * resident old&amp;nbsp; where source='online' and country='ind'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please correct if my script is wrong thanking you in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/regarding-Resident-Load/m-p/1096620#M932121</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: regarding  Resident Load</title>
      <link>https://community.qlik.com/t5/QlikView/regarding-Resident-Load/m-p/1096621#M932122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Two tables that have exactly the same columns will automatically concatenate. As a result the new table will never exists and the rows will just be added to the old table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Two solutions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you do not want two tables, but only want to filter, just add the where clause to the initial load:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Old:&lt;/P&gt;&lt;P&gt;LOAD country, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; date, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; price, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; productid, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; source&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;(biff, embedded labels, table is Sheet1$)&lt;/P&gt;&lt;P&gt;where source='online' and country='ind';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatively, you can add the noconcatenate statement to the 2nd load:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;New:&lt;/P&gt;&lt;P&gt;noconcatenate&lt;/P&gt;&lt;P&gt;load * resident old&amp;nbsp; where source='online' and country='ind';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Keep in mind that when two tables have more then 1 column in common you get a synthetic key; not what you want.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Mar 2016 09:43:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/regarding-Resident-Load/m-p/1096621#M932122</guid>
      <dc:creator>oknotsen</dc:creator>
      <dc:date>2016-03-05T09:43:01Z</dc:date>
    </item>
    <item>
      <title>Re: regarding  Resident Load</title>
      <link>https://community.qlik.com/t5/QlikView/regarding-Resident-Load/m-p/1096622#M932123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hii &lt;STRONG style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A href="https://community.qlik.com/people/okg"&gt;okg&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Thanks&amp;nbsp; so much&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Mar 2016 10:36:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/regarding-Resident-Load/m-p/1096622#M932123</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-03-05T10:36:46Z</dc:date>
    </item>
  </channel>
</rss>

