<?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: Flag or Drop Records Based on Criteria in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Flag-or-Drop-Records-Based-on-Criteria/m-p/1758262#M590643</link>
    <description>&lt;P&gt;Take a look at the attached qvf&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2020-11-03_10-57-24.png" style="width: 422px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/43467i62DBCC4278FAEFD7/image-size/large?v=v2&amp;amp;px=999" role="button" title="2020-11-03_10-57-24.png" alt="2020-11-03_10-57-24.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 03 Nov 2020 20:51:22 GMT</pubDate>
    <dc:creator>albertovarela</dc:creator>
    <dc:date>2020-11-03T20:51:22Z</dc:date>
    <item>
      <title>Flag or Drop Records Based on Criteria</title>
      <link>https://community.qlik.com/t5/QlikView/Flag-or-Drop-Records-Based-on-Criteria/m-p/1758224#M590639</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a strange circumstance here, I want to preferably flag and records with Status of&amp;nbsp; SC*, but only flag it if by Acct# it also doesn't have a Status of DM or EM. The Yellow highlighted example would not be flagged because it doesn't have a DM or EM by Acct#. The other two SCPST would be flagged or dropped because they have a record with DM or EM.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 230px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/43448i6611123DC96453BF/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>Sat, 16 Nov 2024 17:52:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Flag-or-Drop-Records-Based-on-Criteria/m-p/1758224#M590639</guid>
      <dc:creator>MalcolmCICWF</dc:creator>
      <dc:date>2024-11-16T17:52:59Z</dc:date>
    </item>
    <item>
      <title>Re: Flag or Drop Records Based on Criteria</title>
      <link>https://community.qlik.com/t5/QlikView/Flag-or-Drop-Records-Based-on-Criteria/m-p/1758231#M590640</link>
      <description>&lt;P&gt;Maybe you could do something like this?&amp;nbsp;&lt;/P&gt;&lt;P&gt;LOAD distinct Acct# as Acct2Flag FROM Source WHERE Match(Status, 'DM', 'EM')&lt;/P&gt;&lt;P&gt;Load Acct#, Status, exists(Acct2Flag, Acct#) as Flag From Source;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Nov 2020 18:30:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Flag-or-Drop-Records-Based-on-Criteria/m-p/1758231#M590640</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2020-11-03T18:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: Flag or Drop Records Based on Criteria</title>
      <link>https://community.qlik.com/t5/QlikView/Flag-or-Drop-Records-Based-on-Criteria/m-p/1758237#M590641</link>
      <description>&lt;P&gt;Perhaps:&lt;/P&gt;&lt;P&gt;ConcatStatus:&lt;BR /&gt;LOAD Acct#, Concat(Distinct Status,',') as Statuses&lt;BR /&gt;Resident Data&lt;BR /&gt;Group By Acct#;&lt;/P&gt;&lt;P&gt;Left Join (&lt;EM&gt;YourTable&lt;/EM&gt;)&amp;nbsp;&lt;BR /&gt;LOAD Acct#, 'SCPST' as Status, 1 as Flag //Replace the 1 with your value&lt;BR /&gt;Resident ConcatStatus&lt;BR /&gt;Where WildMatch(Statuses,'*SC*') and Wildmatch(Statuses,'*EC*','*DM*');&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;DROP Table ConcatStatus;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Nov 2020 18:55:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Flag-or-Drop-Records-Based-on-Criteria/m-p/1758237#M590641</guid>
      <dc:creator>albertovarela</dc:creator>
      <dc:date>2020-11-03T18:55:35Z</dc:date>
    </item>
    <item>
      <title>Re: Flag or Drop Records Based on Criteria</title>
      <link>https://community.qlik.com/t5/QlikView/Flag-or-Drop-Records-Based-on-Criteria/m-p/1758253#M590642</link>
      <description>&lt;P&gt;I'm not getting either of these to work great... how/where would I bring in multiple other fields I need for the report that I didnt list? Can I do that in the first LOAD? I ask because there are duplicate records and it would be hard to join those fields back afterwards.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Nov 2020 20:07:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Flag-or-Drop-Records-Based-on-Criteria/m-p/1758253#M590642</guid>
      <dc:creator>MalcolmCICWF</dc:creator>
      <dc:date>2020-11-03T20:07:36Z</dc:date>
    </item>
    <item>
      <title>Re: Flag or Drop Records Based on Criteria</title>
      <link>https://community.qlik.com/t5/QlikView/Flag-or-Drop-Records-Based-on-Criteria/m-p/1758262#M590643</link>
      <description>&lt;P&gt;Take a look at the attached qvf&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2020-11-03_10-57-24.png" style="width: 422px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/43467i62DBCC4278FAEFD7/image-size/large?v=v2&amp;amp;px=999" role="button" title="2020-11-03_10-57-24.png" alt="2020-11-03_10-57-24.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Nov 2020 20:51:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Flag-or-Drop-Records-Based-on-Criteria/m-p/1758262#M590643</guid>
      <dc:creator>albertovarela</dc:creator>
      <dc:date>2020-11-03T20:51:22Z</dc:date>
    </item>
  </channel>
</rss>

