<?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: MINUS in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/MINUS/m-p/711288#M1318178</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you have to join the tables and then filter records (bold) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;t1:&lt;/P&gt;&lt;P&gt;load * inline [&lt;/P&gt;&lt;P&gt;f1, f2, f3&lt;/P&gt;&lt;P&gt;a,1,100&lt;/P&gt;&lt;P&gt;a,1,101&lt;/P&gt;&lt;P&gt;b,2,200&lt;/P&gt;&lt;P&gt;c,3,300&lt;/P&gt;&lt;P&gt;z,20,2000&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;t2:&lt;/P&gt;&lt;P&gt;NoConcatenate load * inline [&lt;/P&gt;&lt;P&gt;f1, f2, f3&lt;/P&gt;&lt;P&gt;a,1,101&lt;/P&gt;&lt;P&gt;b,2,200&lt;/P&gt;&lt;P&gt;c,3,301&lt;/P&gt;&lt;P&gt;d,4,400&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tmp:&lt;/P&gt;&lt;P&gt;NoConcatenate load *, 1 as t1 Resident t1;&lt;/P&gt;&lt;P&gt;join (tmp) load *, 1 as t2 Resident t2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table t1, t2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;final:&lt;/P&gt;&lt;P&gt;NoConcatenate load * Resident tmp &lt;STRONG&gt;where t1=1 and IsNull(t2);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table tmp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Sep 2014 15:16:37 GMT</pubDate>
    <dc:creator>maxgro</dc:creator>
    <dc:date>2014-09-04T15:16:37Z</dc:date>
    <item>
      <title>MINUS</title>
      <link>https://community.qlik.com/t5/QlikView/MINUS/m-p/711286#M1318168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I need to load, in ETL phase, a table that is the result of a MINUS (logically meaning) between 2 tables.&lt;/P&gt;&lt;P&gt;Which is the right command for this statement?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Steven&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MINUS/m-p/711286#M1318168</guid>
      <dc:creator />
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: MINUS</title>
      <link>https://community.qlik.com/t5/QlikView/MINUS/m-p/711287#M1318172</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You mean records that exist in one or other, but not both?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;M.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Sep 2014 15:08:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MINUS/m-p/711287#M1318172</guid>
      <dc:creator>martynlloyd</dc:creator>
      <dc:date>2014-09-04T15:08:19Z</dc:date>
    </item>
    <item>
      <title>Re: MINUS</title>
      <link>https://community.qlik.com/t5/QlikView/MINUS/m-p/711288#M1318178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you have to join the tables and then filter records (bold) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;t1:&lt;/P&gt;&lt;P&gt;load * inline [&lt;/P&gt;&lt;P&gt;f1, f2, f3&lt;/P&gt;&lt;P&gt;a,1,100&lt;/P&gt;&lt;P&gt;a,1,101&lt;/P&gt;&lt;P&gt;b,2,200&lt;/P&gt;&lt;P&gt;c,3,300&lt;/P&gt;&lt;P&gt;z,20,2000&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;t2:&lt;/P&gt;&lt;P&gt;NoConcatenate load * inline [&lt;/P&gt;&lt;P&gt;f1, f2, f3&lt;/P&gt;&lt;P&gt;a,1,101&lt;/P&gt;&lt;P&gt;b,2,200&lt;/P&gt;&lt;P&gt;c,3,301&lt;/P&gt;&lt;P&gt;d,4,400&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tmp:&lt;/P&gt;&lt;P&gt;NoConcatenate load *, 1 as t1 Resident t1;&lt;/P&gt;&lt;P&gt;join (tmp) load *, 1 as t2 Resident t2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table t1, t2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;final:&lt;/P&gt;&lt;P&gt;NoConcatenate load * Resident tmp &lt;STRONG&gt;where t1=1 and IsNull(t2);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table tmp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Sep 2014 15:16:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MINUS/m-p/711288#M1318178</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2014-09-04T15:16:37Z</dc:date>
    </item>
    <item>
      <title>Re: MINUS</title>
      <link>https://community.qlik.com/t5/QlikView/MINUS/m-p/711289#M1318182</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes,&lt;/P&gt;&lt;P&gt;I need to get records that are only in one table and not in the other one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Steven&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2014 07:17:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MINUS/m-p/711289#M1318182</guid>
      <dc:creator />
      <dc:date>2014-09-17T07:17:58Z</dc:date>
    </item>
    <item>
      <title>Re: MINUS</title>
      <link>https://community.qlik.com/t5/QlikView/MINUS/m-p/711290#M1318187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt; This script performs TAB2 - TAB1&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;TAB1:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;load * inline [&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;country, sales&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Brazil, 234&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;US, 432&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Germany, 121&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;India, 444];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;NoConcatenate&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;TAB2:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;load *inline [&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;country1, sales1&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;US, 412&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Germany, 488&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;India, 224&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;China,101];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;NoConcatenate&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Final:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load * Resident TAB2 Where Not Exists(country,country1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Drop Tables TAB1,TAB2;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2014 07:41:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MINUS/m-p/711290#M1318187</guid>
      <dc:creator>anbu1984</dc:creator>
      <dc:date>2014-09-17T07:41:21Z</dc:date>
    </item>
    <item>
      <title>Re: MINUS</title>
      <link>https://community.qlik.com/t5/QlikView/MINUS/m-p/711291#M1318191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TAB1:&lt;/P&gt;&lt;P&gt;load * inline [&lt;/P&gt;&lt;P&gt;country, sales&lt;/P&gt;&lt;P&gt;Brazil, 234&lt;/P&gt;&lt;P&gt;US, 432&lt;/P&gt;&lt;P&gt;Germany, 121&lt;/P&gt;&lt;P&gt;India, 444];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;TAB2:&lt;/P&gt;&lt;P&gt;Load * Where Not Exists(country);&lt;/P&gt;&lt;P&gt;load * inline [&lt;/P&gt;&lt;P&gt;country, sales&lt;/P&gt;&lt;P&gt;US, 412&lt;/P&gt;&lt;P&gt;Germany, 488&lt;/P&gt;&lt;P&gt;India, 224&lt;/P&gt;&lt;P&gt;China,101];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop Table TAB1;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2014 07:47:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MINUS/m-p/711291#M1318191</guid>
      <dc:creator>anbu1984</dc:creator>
      <dc:date>2014-09-17T07:47:25Z</dc:date>
    </item>
  </channel>
</rss>

