<?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: Script to compare list in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Script-to-compare-list/m-p/999234#M339745</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tried but doesn't seem to work.&amp;nbsp; On Reload, it says that it cannot find itemA in the Where clause.&amp;nbsp; How would the load for itemB knows of the existance of itemA to evaluate the Where clause?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Nov 2015 04:51:24 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-11-17T04:51:24Z</dc:date>
    <item>
      <title>Script to compare list</title>
      <link>https://community.qlik.com/t5/QlikView/Script-to-compare-list/m-p/999231#M339742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have two lists, A and B.&amp;nbsp; I would like to write a script: If items from list A is in list B, then replace with blank.&amp;nbsp; Similar to the Exclusion definition in Set Analysis.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Nov 2015 05:06:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-to-compare-list/m-p/999231#M339742</guid>
      <dc:creator />
      <dc:date>2015-11-16T05:06:11Z</dc:date>
    </item>
    <item>
      <title>Re: Script to compare list</title>
      <link>https://community.qlik.com/t5/QlikView/Script-to-compare-list/m-p/999232#M339743</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;I didn't get the whole task, but could you see on script bellow?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;itemA&lt;/P&gt;&lt;P&gt;from ...;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;B:&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;itemB&lt;/P&gt;&lt;P&gt;from...&lt;/P&gt;&lt;P&gt;where not exists(itemA, itemB);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;null()&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as itemB&lt;/P&gt;&lt;P&gt;from ...&lt;/P&gt;&lt;P&gt;where exisis(itemA, itemB);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Nov 2015 10:35:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-to-compare-list/m-p/999232#M339743</guid>
      <dc:creator>pokassov</dc:creator>
      <dc:date>2015-11-16T10:35:38Z</dc:date>
    </item>
    <item>
      <title>Re: Script to compare list</title>
      <link>https://community.qlik.com/t5/QlikView/Script-to-compare-list/m-p/999233#M339744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Exists() function wrapped in a Not() in a WHERE clause of the LOAD statement should work for you. If there is more than one key-field you might have to construct a temporary key. You might even have use of the Mapping Load with an AppyMap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you give us more specifics? Like how is the structure of these "lists"? Is it tables and what are the fields/columns that should be used to match them?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Nov 2015 10:36:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-to-compare-list/m-p/999233#M339744</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-11-16T10:36:52Z</dc:date>
    </item>
    <item>
      <title>Re: Script to compare list</title>
      <link>https://community.qlik.com/t5/QlikView/Script-to-compare-list/m-p/999234#M339745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tried but doesn't seem to work.&amp;nbsp; On Reload, it says that it cannot find itemA in the Where clause.&amp;nbsp; How would the load for itemB knows of the existance of itemA to evaluate the Where clause?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Nov 2015 04:51:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-to-compare-list/m-p/999234#M339745</guid>
      <dc:creator />
      <dc:date>2015-11-17T04:51:24Z</dc:date>
    </item>
    <item>
      <title>Re: Script to compare list</title>
      <link>https://community.qlik.com/t5/QlikView/Script-to-compare-list/m-p/999235#M339746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did this and it worked:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;A:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;itemA&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;from ...;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load * where not exists(itemA,itemB);&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;load&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;itemB&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;from...;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Nov 2015 05:01:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-to-compare-list/m-p/999235#M339746</guid>
      <dc:creator />
      <dc:date>2015-11-17T05:01:29Z</dc:date>
    </item>
  </channel>
</rss>

