<?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 How to filter out NULL value records in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-filter-out-NULL-value-records/m-p/237310#M712717</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Johannes,&lt;/P&gt;&lt;P&gt;Isn't LEFT JOIN will extract all data from the LEFT(TABLE A) no matter what value on the RIGHT (TABLE B)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Mar 2011 08:19:33 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-03-03T08:19:33Z</dc:date>
    <item>
      <title>How to filter out NULL value records</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-out-NULL-value-records/m-p/237305#M712712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI all,&lt;/P&gt;&lt;P&gt;Perhaps this question sounds like simple, but I am not able to figure this out.&lt;/P&gt;&lt;P&gt;I have 2 tables:&lt;/P&gt;&lt;P&gt;Table A - have report details with the owner user ID&lt;/P&gt;&lt;P&gt;Table B - Active User information&lt;/P&gt;&lt;P&gt;So, table A owner ID should be link up with Table B. But some records may not able to find a value in B since the user left the firm already. Thus, I would like to take out all the records that do not have a matched receord in B using JOIN.&lt;/P&gt;&lt;P&gt;How can I do so?&lt;/P&gt;&lt;P&gt;I tried to use INNER JOIN / LEFT JOIN but this does not work.&lt;/P&gt;&lt;P&gt;I also tried to create a TEMP table first with the JOIN and LOAD another table using the RESIDENT TEMP table where NOT isnull(UserName), also does not work.&lt;/P&gt;&lt;P&gt;Thanks all&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2011 05:27:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-out-NULL-value-records/m-p/237305#M712712</guid>
      <dc:creator />
      <dc:date>2011-03-03T05:27:56Z</dc:date>
    </item>
    <item>
      <title>How to filter out NULL value records</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-out-NULL-value-records/m-p/237306#M712713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Something like this:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;TableA:&lt;BR /&gt;Load&lt;BR /&gt; *&lt;BR /&gt;From TABLEASource;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;TableB:&lt;BR /&gt;Load&lt;BR /&gt; *&lt;BR /&gt;From TABLEBSource&lt;BR /&gt;Where exists(UserID, UserID);&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2011 05:49:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-out-NULL-value-records/m-p/237306#M712713</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-03-03T05:49:23Z</dc:date>
    </item>
    <item>
      <title>How to filter out NULL value records</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-out-NULL-value-records/m-p/237307#M712714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Johannes.&lt;/P&gt;&lt;P&gt;But I don't understand your code mean (Sorry that I am new to QlikView).&lt;/P&gt;&lt;P&gt;What I want is to embed user information in TABLE B into the report information table (TABLE A) with JOIN statement. Final outcome something like&lt;/P&gt;&lt;P&gt;TABLE A : Reportname, ReportDesc, ReportDate, OwnerID&lt;/P&gt;&lt;P&gt;TABLE B : UserID, UserName, UserTeam&lt;/P&gt;&lt;P&gt;OUTCOME TABLE C : Reportname, ReportDesc, ReportDate, UserName, UserTeam&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2011 07:18:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-out-NULL-value-records/m-p/237307#M712714</guid>
      <dc:creator />
      <dc:date>2011-03-03T07:18:40Z</dc:date>
    </item>
    <item>
      <title>How to filter out NULL value records</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-out-NULL-value-records/m-p/237308#M712715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah, I completely misunderstood the question. You're looking to do a join (either left join or right join, depending on what values you want to keep). In this case I assume that you only want to load values from Table B where the UserID exists as OwnerID in TableA, correct?&lt;/P&gt;&lt;P&gt;&lt;EM&gt;TableC:&lt;BR /&gt;Load&lt;BR /&gt; Reportname,&lt;BR /&gt; ReportDesc,&lt;BR /&gt; ReportDate,&lt;BR /&gt; OwnerID as UserID&lt;BR /&gt;From TABLEASOURCEDATA;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LEFT JOIN //This only keeps records where UserID in table B matches OwnerID in table A.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Load&lt;BR /&gt; UserID,&lt;BR /&gt; UserName,&lt;BR /&gt; UserTeam&lt;BR /&gt;From TABLEBSOURCEDATA;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2011 07:24:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-out-NULL-value-records/m-p/237308#M712715</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-03-03T07:24:54Z</dc:date>
    </item>
    <item>
      <title>How to filter out NULL value records</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-out-NULL-value-records/m-p/237309#M712716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Johannes,&lt;/P&gt;&lt;P&gt;Isn't LEFT JOIN will extract all data from the LEFT(TABLE A) no matter what value on the RIGHT (TABLE B)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2011 08:19:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-out-NULL-value-records/m-p/237309#M712716</guid>
      <dc:creator />
      <dc:date>2011-03-03T08:19:23Z</dc:date>
    </item>
    <item>
      <title>How to filter out NULL value records</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-out-NULL-value-records/m-p/237310#M712717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Johannes,&lt;/P&gt;&lt;P&gt;Isn't LEFT JOIN will extract all data from the LEFT(TABLE A) no matter what value on the RIGHT (TABLE B)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2011 08:19:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-out-NULL-value-records/m-p/237310#M712717</guid>
      <dc:creator />
      <dc:date>2011-03-03T08:19:33Z</dc:date>
    </item>
    <item>
      <title>SV:Re: How to filter out NULL value records</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-out-NULL-value-records/m-p/237311#M712718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes you are right.&lt;BR /&gt;&lt;BR /&gt;use INNER JOIN to keep only the records in TableA that has a matching record in TableB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2011 16:27:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-out-NULL-value-records/m-p/237311#M712718</guid>
      <dc:creator>gandalfgray</dc:creator>
      <dc:date>2011-03-03T16:27:37Z</dc:date>
    </item>
  </channel>
</rss>

