<?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 Select &amp;quot;no Match Data&amp;quot; in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Select-quot-no-Match-Data-quot/m-p/559334#M687710</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need some help!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have two tables. The first one contains all products, the second one contains just some of them with other information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both have the same ID Product.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to select just the products that ARE NOT in the second table, but every selection I tried, or I had all lines, or I had the match points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will nice if I get to create a Field as "Not in the second" or "In the second".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Nov 2013 14:49:21 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-11-21T14:49:21Z</dc:date>
    <item>
      <title>Select "no Match Data"</title>
      <link>https://community.qlik.com/t5/QlikView/Select-quot-no-Match-Data-quot/m-p/559334#M687710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need some help!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have two tables. The first one contains all products, the second one contains just some of them with other information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both have the same ID Product.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to select just the products that ARE NOT in the second table, but every selection I tried, or I had all lines, or I had the match points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will nice if I get to create a Field as "Not in the second" or "In the second".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Nov 2013 14:49:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-quot-no-Match-Data-quot/m-p/559334#M687710</guid>
      <dc:creator />
      <dc:date>2013-11-21T14:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: Select "no Match Data"</title>
      <link>https://community.qlik.com/t5/QlikView/Select-quot-no-Match-Data-quot/m-p/559335#M687711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you just select all the data from the second table and then look and see which product ID's in the first table are greyed out?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Nov 2013 14:51:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-quot-no-Match-Data-quot/m-p/559335#M687711</guid>
      <dc:creator>jpapador</dc:creator>
      <dc:date>2013-11-21T14:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: Select "no Match Data"</title>
      <link>https://community.qlik.com/t5/QlikView/Select-quot-no-Match-Data-quot/m-p/559336#M687712</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;Create a dummy field in a script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FirstTemp:&lt;/P&gt;&lt;P&gt;Load *&amp;nbsp; from Firsttable;&lt;/P&gt;&lt;P&gt;Left join (FirstTemp)&lt;/P&gt;&lt;P&gt;Load productID,'Second' as flag from secondtable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First:&lt;/P&gt;&lt;P&gt;Load If(IsNull(flag), 'Not in the Second', 'In the Second') As flag1 , * resident FirstTemp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop table FirstTemp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Nov 2013 14:58:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-quot-no-Match-Data-quot/m-p/559336#M687712</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2013-11-21T14:58:43Z</dc:date>
    </item>
    <item>
      <title>Re: Select "no Match Data"</title>
      <link>https://community.qlik.com/t5/QlikView/Select-quot-no-Match-Data-quot/m-p/559337#M687713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tks for reply, I'm a little bit weak in Script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll crate this TempTable after the charge of the originals or Before?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My first Table is Faturamento and the Second, Contratos.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The key field is Chassi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I build this script?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tks again!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Nov 2013 15:59:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-quot-no-Match-Data-quot/m-p/559337#M687713</guid>
      <dc:creator />
      <dc:date>2013-11-21T15:59:31Z</dc:date>
    </item>
    <item>
      <title>Re: Select "no Match Data"</title>
      <link>https://community.qlik.com/t5/QlikView/Select-quot-no-Match-Data-quot/m-p/559338#M687714</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;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Script begins:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Join the first and second table by using Chassi and create the dummy field as flag&lt;/P&gt;&lt;P style="font-size: 12.727272033691406px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px;"&gt;TempTable&lt;/SPAN&gt;:&lt;/P&gt;&lt;P style="font-size: 12.727272033691406px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load *&amp;nbsp; from &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px;"&gt;Faturamento &lt;/SPAN&gt;;&lt;/P&gt;&lt;P style="font-size: 12.727272033691406px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Left join (&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px;"&gt;TempTable&lt;/SPAN&gt;)&lt;/P&gt;&lt;P style="font-size: 12.727272033691406px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px;"&gt;Chassi&lt;/SPAN&gt;,'Second' as flag from &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px;"&gt;Contratos&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12.727272033691406px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;//Create flag for the selection purpose after join both tables&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 12.727272033691406px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;First:&lt;/P&gt;&lt;P style="font-size: 12.727272033691406px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load If(IsNull(flag), 'Not in the Second', 'In the Second') As flag1 , * resident &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px;"&gt;TempTable&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12.727272033691406px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;// Drop the temporary Table&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 12.727272033691406px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Drop table &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px;"&gt;TempTable&lt;/SPAN&gt;;&lt;/P&gt;&lt;P style="font-size: 12.727272033691406px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 12.727272033691406px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;//Load the second Table &lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 12.727272033691406px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Second:&lt;/P&gt;&lt;P style="font-size: 12.727272033691406px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load * from &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px;"&gt;Contratos&lt;/SPAN&gt;;&lt;/P&gt;&lt;P style="font-size: 12.727272033691406px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 12.727272033691406px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hope it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Nov 2013 16:20:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-quot-no-Match-Data-quot/m-p/559338#M687714</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2013-11-21T16:20:02Z</dc:date>
    </item>
    <item>
      <title>Re: Select "no Match Data"</title>
      <link>https://community.qlik.com/t5/QlikView/Select-quot-no-Match-Data-quot/m-p/559339#M687715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tks a lot. It's working very well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I needed load each field, 'cause I changed some field names in the place of load *, but in general worked very well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At the first I was trying to load twice the same database, but now I understood the logical.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Nov 2013 19:12:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-quot-no-Match-Data-quot/m-p/559339#M687715</guid>
      <dc:creator />
      <dc:date>2013-11-21T19:12:12Z</dc:date>
    </item>
    <item>
      <title>Re: Select "no Match Data"</title>
      <link>https://community.qlik.com/t5/QlikView/Select-quot-no-Match-Data-quot/m-p/559340#M687716</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;Can you please close the post, if you get the answer. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Nov 2013 19:21:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-quot-no-Match-Data-quot/m-p/559340#M687716</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2013-11-21T19:21:04Z</dc:date>
    </item>
  </channel>
</rss>

