<?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 create a filter field that includes/excludes a specific category associatively? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-create-a-filter-field-that-includes-excludes-a-specific/m-p/2548670#M110208</link>
    <description>&lt;P&gt;Yesterday I decided on the bridge table. But I didn't do it that way. I thought the suggestion was great.&lt;/P&gt;&lt;P&gt;Thank you &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 07 May 2026 14:58:57 GMT</pubDate>
    <dc:creator>priscilarubim</dc:creator>
    <dc:date>2026-05-07T14:58:57Z</dc:date>
    <item>
      <title>How to create a filter field that includes/excludes a specific category associatively?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-a-filter-field-that-includes-excludes-a-specific/m-p/2548557#M110192</link>
      <description>&lt;P&gt;Hi community,&lt;/P&gt;&lt;P&gt;I would like to know what the best approach would be to create a filter field called [Region] that works as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- Include All Regions - displays all region categories (NA, EU, APAC, LATAM, MEA)&lt;/P&gt;&lt;P&gt;- Exclude APAC - displays all regions except APAC&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2026 18:35:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-a-filter-field-that-includes-excludes-a-specific/m-p/2548557#M110192</guid>
      <dc:creator>priscilarubim</dc:creator>
      <dc:date>2026-05-06T18:35:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a filter field that includes/excludes a specific category associatively?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-a-filter-field-that-includes-excludes-a-specific/m-p/2548559#M110193</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/172757"&gt;@priscilarubim&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If you're referring to script execution, I would suggest first creating an inline table and then using a join to reduce the table containing the regions. This way, you don't waste time filtering while reading the source or the QVD.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;DATA:
load * inline [
Region
NA
EU
LATAM
MEA];

LEFT JOIN (DATA)
LOAD
   Region
   &amp;lt;your other fields&amp;gt;
FROM &amp;lt;database|qvd&amp;gt;;&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;If you are refering to expressions to limit the results of a table or chart:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;sum({&amp;lt; Region-={"APAC"} &amp;gt;} quantity)&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;This way you can use APAC on some other sheet in the same app.&lt;BR /&gt;&lt;BR /&gt;Hpe this helps.&lt;BR /&gt;best,&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;help users find answers! Don't forget to mark a solution that worked for you &amp;amp; to smash the like button!&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2026 19:39:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-a-filter-field-that-includes-excludes-a-specific/m-p/2548559#M110193</guid>
      <dc:creator>RafaelBarrios</dc:creator>
      <dc:date>2026-05-06T19:39:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a filter field that includes/excludes a specific category associatively?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-a-filter-field-that-includes-excludes-a-specific/m-p/2548562#M110195</link>
      <description>&lt;P&gt;Hi Rafael, thanks for your response!&lt;/P&gt;&lt;P&gt;What I need is a filter pane with two selectable options that control which categories are visible in the app:&lt;/P&gt;&lt;P&gt;Region Filter:&lt;BR /&gt;- &amp;gt; Include All Regions:&amp;nbsp; NA, EU, APAC, LATAM, MEA&amp;nbsp;&lt;BR /&gt;- &amp;gt; Exclude APAC:&amp;nbsp; NA, EU, LATAM, MEA&amp;nbsp;&lt;/P&gt;&lt;P&gt;So when the user selects "Include All Regions", all categories are shown. When they select "Exclude APAC", all categories are shown except APAC.&lt;/P&gt;&lt;P&gt;The challenge is that NA, EU, LATAM and MEA need to belong to both filter options simultaneously.&lt;/P&gt;&lt;P&gt;I am considering using a Bridge Table to handle this, but I am not sure if that is the most elegant approach.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2026 20:04:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-a-filter-field-that-includes-excludes-a-specific/m-p/2548562#M110195</guid>
      <dc:creator>priscilarubim</dc:creator>
      <dc:date>2026-05-06T20:04:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a filter field that includes/excludes a specific category associatively?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-a-filter-field-that-includes-excludes-a-specific/m-p/2548572#M110196</link>
      <description>&lt;P&gt;got it,&lt;BR /&gt;&lt;BR /&gt;here a quick example with different data, but im sure you will get the idea&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;you can do it with two button objects&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RafaelBarrios_0-1778103253915.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/188178i1B60DA0EF0610DD5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RafaelBarrios_0-1778103253915.png" alt="RafaelBarrios_0-1778103253915.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;drag and drop a button and click on "add action"&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RafaelBarrios_1-1778103342273.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/188179i8747530D6B731553/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RafaelBarrios_1-1778103342273.png" alt="RafaelBarrios_1-1778103342273.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;with one button you can apply selections on a field for one or several values&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RafaelBarrios_2-1778103413593.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/188180iD7DF511D763A9693/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RafaelBarrios_2-1778103413593.png" alt="RafaelBarrios_2-1778103413593.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the other button, will clear the selections on a field, showing everything&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RafaelBarrios_3-1778103466765.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/188181iBC7788C7EAADB2A7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RafaelBarrios_3-1778103466765.png" alt="RafaelBarrios_3-1778103466765.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;hope this helps&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2026 21:39:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-a-filter-field-that-includes-excludes-a-specific/m-p/2548572#M110196</guid>
      <dc:creator>RafaelBarrios</dc:creator>
      <dc:date>2026-05-06T21:39:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a filter field that includes/excludes a specific category associatively?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-a-filter-field-that-includes-excludes-a-specific/m-p/2548579#M110197</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/172757"&gt;@priscilarubim&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Do the "bridge" table. You just need to classify those records.&lt;/P&gt;&lt;P&gt;One suggestion is to create a single selection only, like the example below:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Regions:
LOAD 
Region,
If([ExcludeAPAC]=1,'Exclude APAC') AS [Region Filter]
INLINE [
Region, ExcludeAPAC
NA,
NA,1
EU,
EU,1
APAC,
LATAM,
LATAM,1
MEA,
MEA,1
];&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is how it will look in the Dashboard:&lt;BR /&gt;&lt;BR /&gt;&lt;div class="video-embed-center video-embed"&gt;&lt;iframe class="embedly-embed" src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FPXrR1ltHdC8%3Ffeature%3Doembed&amp;amp;display_name=YouTube&amp;amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DPXrR1ltHdC8&amp;amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FPXrR1ltHdC8%2Fhqdefault.jpg&amp;amp;type=text%2Fhtml&amp;amp;schema=youtube" width="200" height="113" scrolling="no" title="region filter" frameborder="0" allow="autoplay; fullscreen; encrypted-media; picture-in-picture;" allowfullscreen="true"&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Mark Costa&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 May 2026 03:22:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-a-filter-field-that-includes-excludes-a-specific/m-p/2548579#M110197</guid>
      <dc:creator>marksouzacosta</dc:creator>
      <dc:date>2026-05-07T03:22:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a filter field that includes/excludes a specific category associatively?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-a-filter-field-that-includes-excludes-a-specific/m-p/2548670#M110208</link>
      <description>&lt;P&gt;Yesterday I decided on the bridge table. But I didn't do it that way. I thought the suggestion was great.&lt;/P&gt;&lt;P&gt;Thank you &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 May 2026 14:58:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-a-filter-field-that-includes-excludes-a-specific/m-p/2548670#M110208</guid>
      <dc:creator>priscilarubim</dc:creator>
      <dc:date>2026-05-07T14:58:57Z</dc:date>
    </item>
  </channel>
</rss>

