<?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: Exclude values from resident in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Exclude-values-from-resident/m-p/2506543#M104210</link>
    <description>&lt;P&gt;This:&amp;nbsp;&lt;SPAN&gt;&lt;STRONG&gt;StudentsExclude.&lt;/STRONG&gt;%Key&lt;/SPAN&gt;&amp;nbsp;indicates that any qualifying is applied. I suggest to remove it completely because it's very seldom an added value (only in specific cases for experienced users) else it will cause a lot of trouble.&lt;/P&gt;</description>
    <pubDate>Wed, 19 Feb 2025 08:46:59 GMT</pubDate>
    <dc:creator>marcus_sommer</dc:creator>
    <dc:date>2025-02-19T08:46:59Z</dc:date>
    <item>
      <title>Exclude values from resident</title>
      <link>https://community.qlik.com/t5/App-Development/Exclude-values-from-resident/m-p/2506519#M104205</link>
      <description>&lt;P&gt;I am trying to exclude the math courses equal from Student after using subfield but I got error "StudentsExclude.%Key not exists". what i have done wrong?&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Students:
LOAD
%Key,
FirstName,
LastName,
Courses, 
Gender,
BirthDay

RESIDENT FACT

StudentsALL:
%Key, 
SubField(Courses, ';') AS Course

RESIDENT Students
STORE StudentsALL INTO [lib://DEMO/StudentsALL.QVD](qvd);

StudentsExclude:
LOAD DISTINCT %Key
RESIDENT StudentsALL
WHERE Course= 'Math';

StudentsExcludeMath:
LOAD *
RESIDENT Students
WHERE NOT Exists(StudentsExclude.%Key);

STORE StudentsExcludeMath INTO [lib://DEMO/StudentsExcludeMath.QVD](qvd);&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2025 06:31:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Exclude-values-from-resident/m-p/2506519#M104205</guid>
      <dc:creator>YanivZi</dc:creator>
      <dc:date>2025-02-19T06:31:41Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude values from resident</title>
      <link>https://community.qlik.com/t5/App-Development/Exclude-values-from-resident/m-p/2506531#M104208</link>
      <description>&lt;P&gt;Change your load script&amp;nbsp;&lt;/P&gt;
&lt;P&gt;StudentsExcludeMath:&lt;/P&gt;
&lt;P&gt;LOAD *&lt;/P&gt;
&lt;P&gt;RESIDENT Students&lt;/P&gt;
&lt;P&gt;WHERE NOT Exists(%Ke&lt;SPAN&gt;y);&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2025 07:28:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Exclude-values-from-resident/m-p/2506531#M104208</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2025-02-19T07:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude values from resident</title>
      <link>https://community.qlik.com/t5/App-Development/Exclude-values-from-resident/m-p/2506543#M104210</link>
      <description>&lt;P&gt;This:&amp;nbsp;&lt;SPAN&gt;&lt;STRONG&gt;StudentsExclude.&lt;/STRONG&gt;%Key&lt;/SPAN&gt;&amp;nbsp;indicates that any qualifying is applied. I suggest to remove it completely because it's very seldom an added value (only in specific cases for experienced users) else it will cause a lot of trouble.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2025 08:46:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Exclude-values-from-resident/m-p/2506543#M104210</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2025-02-19T08:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude values from resident</title>
      <link>https://community.qlik.com/t5/App-Development/Exclude-values-from-resident/m-p/2506629#M104221</link>
      <description>&lt;P&gt;Excluding the qualification will not solve the problem that is asked about.&lt;BR /&gt;Sure the script will run but exclude everything since every %Key already exists!&lt;BR /&gt;I suggest this;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;StudentsExclude:
LOAD DISTINCT %Key as %ExcludeKey
RESIDENT StudentsALL
WHERE Course= 'Math';

StudentsExcludeMath:
LOAD *
RESIDENT Students
WHERE NOT Exists(%ExcludeKey, %Key);&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 19 Feb 2025 14:44:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Exclude-values-from-resident/m-p/2506629#M104221</guid>
      <dc:creator>Anders_Eriksson</dc:creator>
      <dc:date>2025-02-19T14:44:16Z</dc:date>
    </item>
  </channel>
</rss>

