<?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: Select exclude for the given values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Select-exclude-for-the-given-values/m-p/2089418#M1224123</link>
    <description>&lt;P&gt;Hi Erichshiino,&lt;/P&gt;
&lt;P&gt;When i used your expression, added it to a button and using "Select in field" and then added an Exclude so i can confirm that only those 2 are being excluded, it seems to be picking the first valid value alphabetically and then excluding it as well as the two in the expression.&lt;/P&gt;
&lt;P&gt;e.g.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;='('&amp;amp; concat({&amp;lt;BPR_0-={'GBI-103658','GBI-102288'}&amp;gt;} distinct BPR_0, '|')&amp;amp; ')'&lt;/P&gt;
&lt;P&gt;and it excluses " ", "Axxx",&amp;nbsp;'GBI-103658','GBI-102288' which i cant figure out why.&lt;/P&gt;
&lt;P&gt;Please assist.&lt;/P&gt;</description>
    <pubDate>Fri, 30 Jun 2023 07:57:06 GMT</pubDate>
    <dc:creator>dhruv_sampat</dc:creator>
    <dc:date>2023-06-30T07:57:06Z</dc:date>
    <item>
      <title>Select exclude for the given values</title>
      <link>https://community.qlik.com/t5/QlikView/Select-exclude-for-the-given-values/m-p/269854#M101206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I ve a field 'ID ' which has values as (a,b,c,d,......). Here I want to select all the values other than a &amp;amp; b using an action in a button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using the 'Select in Field' action on ID&amp;nbsp; field, I tried &lt;STRONG&gt;&amp;lt;&amp;gt;(a|b) &lt;/STRONG&gt;expression , which is not working.I could do it using two actions 'Select in Field, Select Excluded' on the ID field.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM style=": ; font-size: 10pt;"&gt; &lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Is it possible to do it using single action.&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sankar&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2011 13:34:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-exclude-for-the-given-values/m-p/269854#M101206</guid>
      <dc:creator />
      <dc:date>2011-06-07T13:34:58Z</dc:date>
    </item>
    <item>
      <title>Select exclude for the given values</title>
      <link>https://community.qlik.com/t5/QlikView/Select-exclude-for-the-given-values/m-p/269855#M101207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use this expression there (including the = sign) &lt;/P&gt;&lt;P&gt;='('&amp;amp; concat({&amp;lt;ID-={a,b}&amp;gt;} distinct ID, '|')&amp;amp; ')'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will construct a string will all the values, excluding A,B. : (c|d|e|f)&lt;/P&gt;&lt;P&gt;A bit complicated expression to a task that could be done with two actions... &lt;/P&gt;&lt;P&gt;Hope this helps, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2011 13:45:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-exclude-for-the-given-values/m-p/269855#M101207</guid>
      <dc:creator>erichshiino</dc:creator>
      <dc:date>2011-06-07T13:45:12Z</dc:date>
    </item>
    <item>
      <title>Select exclude for the given values</title>
      <link>https://community.qlik.com/t5/QlikView/Select-exclude-for-the-given-values/m-p/269856#M101208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; How about:&lt;/P&gt;&lt;P&gt;Select in Field: Field&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (A|B)&lt;/P&gt;&lt;P&gt;Select Excluded: Field&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2011 15:57:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-exclude-for-the-given-values/m-p/269856#M101208</guid>
      <dc:creator />
      <dc:date>2011-06-07T15:57:59Z</dc:date>
    </item>
    <item>
      <title>Select exclude for the given values</title>
      <link>https://community.qlik.com/t5/QlikView/Select-exclude-for-the-given-values/m-p/269857#M101209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi Erich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One more requirement to select 'aa aa' |'bb bb' in the ID field using the action in the trigger.Due to the space b/w the words , usual expression - (aa aa|bb bb) is not working.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2011 08:20:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-exclude-for-the-given-values/m-p/269857#M101209</guid>
      <dc:creator />
      <dc:date>2011-06-08T08:20:33Z</dc:date>
    </item>
    <item>
      <title>Re: Select exclude for the given values</title>
      <link>https://community.qlik.com/t5/QlikView/Select-exclude-for-the-given-values/m-p/2089418#M1224123</link>
      <description>&lt;P&gt;Hi Erichshiino,&lt;/P&gt;
&lt;P&gt;When i used your expression, added it to a button and using "Select in field" and then added an Exclude so i can confirm that only those 2 are being excluded, it seems to be picking the first valid value alphabetically and then excluding it as well as the two in the expression.&lt;/P&gt;
&lt;P&gt;e.g.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;='('&amp;amp; concat({&amp;lt;BPR_0-={'GBI-103658','GBI-102288'}&amp;gt;} distinct BPR_0, '|')&amp;amp; ')'&lt;/P&gt;
&lt;P&gt;and it excluses " ", "Axxx",&amp;nbsp;'GBI-103658','GBI-102288' which i cant figure out why.&lt;/P&gt;
&lt;P&gt;Please assist.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jun 2023 07:57:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-exclude-for-the-given-values/m-p/2089418#M1224123</guid>
      <dc:creator>dhruv_sampat</dc:creator>
      <dc:date>2023-06-30T07:57:06Z</dc:date>
    </item>
    <item>
      <title>Re: Select exclude for the given values</title>
      <link>https://community.qlik.com/t5/QlikView/Select-exclude-for-the-given-values/m-p/2089605#M1224129</link>
      <description>&lt;P&gt;='('&amp;amp; concat({&amp;lt;BPR_0-={&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;"&lt;/STRONG&gt;&lt;/FONT&gt;GBI-103658&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;"&lt;/FONT&gt;&lt;/STRONG&gt;,&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;"&lt;/FONT&gt;&lt;/STRONG&gt;GBI-102288&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;"&lt;/FONT&gt;&lt;/STRONG&gt;}&amp;gt;} distinct BPR_0, '|')&amp;amp; ')'&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jun 2023 14:49:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-exclude-for-the-given-values/m-p/2089605#M1224129</guid>
      <dc:creator>BrunPierre</dc:creator>
      <dc:date>2023-06-30T14:49:10Z</dc:date>
    </item>
  </channel>
</rss>

