<?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 find new items in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/find-new-items/m-p/634874#M232879</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;i have to 2 lists of items , I need to find the new ones , that are not available on the other list . &lt;/P&gt;&lt;P&gt;enclosed is a file &lt;/P&gt;&lt;P&gt;sheet list1 is long list that includes all &lt;/P&gt;&lt;P&gt;sheet list2 is short list &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sheet list3 is the list I want to get&lt;/P&gt;&lt;P&gt; those are the iitems that are on list1 and not on list2 &lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gidon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 31 May 2014 05:10:27 GMT</pubDate>
    <dc:creator>gidon500</dc:creator>
    <dc:date>2014-05-31T05:10:27Z</dc:date>
    <item>
      <title>find new items</title>
      <link>https://community.qlik.com/t5/QlikView/find-new-items/m-p/634874#M232879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;i have to 2 lists of items , I need to find the new ones , that are not available on the other list . &lt;/P&gt;&lt;P&gt;enclosed is a file &lt;/P&gt;&lt;P&gt;sheet list1 is long list that includes all &lt;/P&gt;&lt;P&gt;sheet list2 is short list &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sheet list3 is the list I want to get&lt;/P&gt;&lt;P&gt; those are the iitems that are on list1 and not on list2 &lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gidon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 31 May 2014 05:10:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/find-new-items/m-p/634874#M232879</guid>
      <dc:creator>gidon500</dc:creator>
      <dc:date>2014-05-31T05:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: find new items</title>
      <link>https://community.qlik.com/t5/QlikView/find-new-items/m-p/634875#M232880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use EXISTS() function for that:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD item, desc, 'Old' as Status FROM list2;&lt;/P&gt;&lt;P&gt;LOAD item, desc, 'New' as Status FROM list1 WHERE NOT EXISTS(item);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will create a single table with a status field, if you just want to create list3 table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OLD:&lt;/P&gt;&lt;P&gt;LOAD item, desc FROM list2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;list3:&lt;/P&gt;&lt;P&gt;NOCONCATENATE LOAD item, desc FROM list1 WHERE NOT EXISTS(item);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP TABLE OLD;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 31 May 2014 09:13:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/find-new-items/m-p/634875#M232880</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2014-05-31T09:13:40Z</dc:date>
    </item>
    <item>
      <title>Re: find new items</title>
      <link>https://community.qlik.com/t5/QlikView/find-new-items/m-p/634876#M232881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this :&lt;/P&gt;&lt;P style="font-size: 10px; font-family: Consolas; color: #941100;"&gt;&lt;SPAN style="color: #000000;"&gt;B:&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0433ff;"&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; * &lt;/SPAN&gt;&lt;SPAN style="color: #0433ff;"&gt;INLINE&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;[&lt;BR /&gt; item,desc&lt;BR /&gt; 100,PC&lt;BR /&gt; 103,BLUE-NB&lt;BR /&gt; ]&lt;SPAN style="color: #000000;"&gt;;&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt; &lt;BR /&gt; A:&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0433ff;"&gt;&lt;STRONG&gt;load&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;item&lt;SPAN style="color: #000000;"&gt;,&lt;/SPAN&gt;desc&lt;SPAN style="color: #000000;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #0433ff;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0433ff;"&gt;Exists&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;(&lt;/SPAN&gt;item&lt;SPAN style="color: #000000;"&gt;),1,0) &lt;/SPAN&gt;&lt;SPAN style="color: #0433ff;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;flag&lt;SPAN style="color: #000000;"&gt;;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0433ff;"&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; * &lt;/SPAN&gt;&lt;SPAN style="color: #0433ff;"&gt;INLINE&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;[&lt;BR /&gt; item,desc&lt;BR /&gt; 100,PC&lt;BR /&gt; 101,NB&lt;BR /&gt; 103,BLUE-NB&lt;BR /&gt; 104,SERVER&lt;BR /&gt; ]&lt;SPAN style="color: #000000;"&gt;; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 31 May 2014 09:13:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/find-new-items/m-p/634876#M232881</guid>
      <dc:creator>mambi</dc:creator>
      <dc:date>2014-05-31T09:13:47Z</dc:date>
    </item>
  </channel>
</rss>

