<?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: How to eliminate certain rows in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-eliminate-certain-rows/m-p/1759721#M58737</link>
    <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/43068"&gt;@manju421&lt;/a&gt;&amp;nbsp; in Script for example :&lt;/P&gt;&lt;LI-CODE lang="python"&gt;Data:

Load * inline [
Project name,version,Status
test 1,1,closed
test 1,2,closed
test 1,3,Terminated
test 2,1,closed
test 2,2,closed
];
left join load [Project name],'1' as Flag resident Data where  Status='Terminated';


output:
noconcatenate
load * resident Data where Flag&amp;lt;&amp;gt;'1';

drop table Data;
drop fields Flag;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;output:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 338px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/43792i0D02A011DBF47D60/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 09 Nov 2020 08:51:16 GMT</pubDate>
    <dc:creator>Taoufiq_Zarra</dc:creator>
    <dc:date>2020-11-09T08:51:16Z</dc:date>
    <item>
      <title>How to eliminate certain rows</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-eliminate-certain-rows/m-p/1759712#M58736</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot_20201109-140528__01.jpg" style="width: 912px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/43790iE46B0700A66936F5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot_20201109-140528__01.jpg" alt="Screenshot_20201109-140528__01.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; I want to eliminate project which have status =. Terminated. If status = terminated in any of the version, I don't want to display that project.&lt;/P&gt;&lt;P&gt;In above example Project name (Test 1) has status Terminated, In this case, I want to eliminate all 3 rows for Test 1&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 01:09:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-eliminate-certain-rows/m-p/1759712#M58736</guid>
      <dc:creator>manju421</dc:creator>
      <dc:date>2024-11-16T01:09:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to eliminate certain rows</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-eliminate-certain-rows/m-p/1759721#M58737</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/43068"&gt;@manju421&lt;/a&gt;&amp;nbsp; in Script for example :&lt;/P&gt;&lt;LI-CODE lang="python"&gt;Data:

Load * inline [
Project name,version,Status
test 1,1,closed
test 1,2,closed
test 1,3,Terminated
test 2,1,closed
test 2,2,closed
];
left join load [Project name],'1' as Flag resident Data where  Status='Terminated';


output:
noconcatenate
load * resident Data where Flag&amp;lt;&amp;gt;'1';

drop table Data;
drop fields Flag;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;output:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 338px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/43792i0D02A011DBF47D60/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Nov 2020 08:51:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-eliminate-certain-rows/m-p/1759721#M58737</guid>
      <dc:creator>Taoufiq_Zarra</dc:creator>
      <dc:date>2020-11-09T08:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to eliminate certain rows</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-eliminate-certain-rows/m-p/1759762#M58740</link>
      <description>&lt;P&gt;You could solve this with a solution using NOT &lt;A href="https://help.qlik.com/en-US/sense/September2020/Subsystems/Hub/Content/Sense_Hub/Scripting/InterRecordFunctions/Exists.htm" target="_self"&gt;Exsists()&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;ExcludedList:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;LOAD [Project name] as ExcludedProjectName&lt;BR /&gt;&lt;/FONT&gt;&lt;FONT face="courier new,courier"&gt;FROM source&lt;BR /&gt;WHERE Status= 'Terminated';&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Final:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;LOAD [Project name], Version, Status&lt;BR /&gt;FROM Source&lt;BR /&gt;WHERE Not Exists(ExcludedProjectName , [Project name] );&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Drop table ExcludedList;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Nov 2020 09:45:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-eliminate-certain-rows/m-p/1759762#M58740</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2020-11-09T09:45:44Z</dc:date>
    </item>
  </channel>
</rss>

