<?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: Filter based on substring in field in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Filter-based-on-substring-in-field/m-p/1700519#M53641</link>
    <description>&lt;P&gt;Thanks for the suggestion Taoufiq, it's definitely a lot closer.&lt;/P&gt;&lt;P&gt;This generates a list of subthemes and duplicate records for each of the observations, however, as a result, the additive filtering doesn't work. E.g. if you select two subthemes, the filter returns the entire set instead of just the intersection.&lt;/P&gt;&lt;P&gt;Any ideas for a workaround?&lt;/P&gt;</description>
    <pubDate>Sun, 10 May 2020 23:16:05 GMT</pubDate>
    <dc:creator>josh_bee</dc:creator>
    <dc:date>2020-05-10T23:16:05Z</dc:date>
    <item>
      <title>Filter based on substring in field</title>
      <link>https://community.qlik.com/t5/App-Development/Filter-based-on-substring-in-field/m-p/1698642#M53493</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm building an app to show feedback according to particular themes, where each piece of feedback is assigned one or multiple themes.&lt;/P&gt;&lt;P&gt;Is there a way to have a master dimension with the possible theme values, and use a substring search on the field(or another method) to show any comment that has been tagged with the selected value/s?&lt;/P&gt;&lt;P&gt;Example structure is a table with:&lt;/P&gt;&lt;P&gt;observation | themes&lt;/P&gt;&lt;P&gt;"comment 1" | ['Leadership', 'Culture']&lt;/P&gt;&lt;P&gt;"comment 2" | ['Leadership', 'ICT', 'Policies/Processes']&lt;/P&gt;&lt;P&gt;"comment 3" | ['Leadership']&lt;/P&gt;&lt;P&gt;Is there a way to use a filter box:&lt;/P&gt;&lt;P&gt;- Leadership&lt;/P&gt;&lt;P&gt;- Culture&lt;/P&gt;&lt;P&gt;- ICT&lt;/P&gt;&lt;P&gt;- Policies/Processes&lt;/P&gt;&lt;P&gt;Such that if Leadership was chosen, all three would show, if ICT and Culture then comments 1 and 2, Culture comment 1 etc?&lt;/P&gt;&lt;P&gt;The data is currently tagged with a list of themes in python before being imported into Qlik.&lt;/P&gt;&lt;P&gt;Thanks for your help&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 18:42:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Filter-based-on-substring-in-field/m-p/1698642#M53493</guid>
      <dc:creator>josh_bee</dc:creator>
      <dc:date>2024-11-16T18:42:06Z</dc:date>
    </item>
    <item>
      <title>Re: Filter based on substring in field</title>
      <link>https://community.qlik.com/t5/App-Development/Filter-based-on-substring-in-field/m-p/1698825#M53509</link>
      <description>&lt;P&gt;yes you can get these results in the load script using Subfield&lt;/P&gt;&lt;P&gt;for example :&lt;/P&gt;&lt;LI-CODE lang="python"&gt;Data:

load subfield(themes,',') as Sub_Themes,rowNo() as ID,* inline [
observation | themes

"comment 1" | "Leadership, Culture"

"comment 2" | "Leadership, ICT, Policies/Processes"

"comment 3" | "Leadership"
](delimiter is '|') ;&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: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/32914iF2A55DE5D9390CE3/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, 04 May 2020 15:12:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Filter-based-on-substring-in-field/m-p/1698825#M53509</guid>
      <dc:creator>Taoufiq_Zarra</dc:creator>
      <dc:date>2020-05-04T15:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: Filter based on substring in field</title>
      <link>https://community.qlik.com/t5/App-Development/Filter-based-on-substring-in-field/m-p/1700519#M53641</link>
      <description>&lt;P&gt;Thanks for the suggestion Taoufiq, it's definitely a lot closer.&lt;/P&gt;&lt;P&gt;This generates a list of subthemes and duplicate records for each of the observations, however, as a result, the additive filtering doesn't work. E.g. if you select two subthemes, the filter returns the entire set instead of just the intersection.&lt;/P&gt;&lt;P&gt;Any ideas for a workaround?&lt;/P&gt;</description>
      <pubDate>Sun, 10 May 2020 23:16:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Filter-based-on-substring-in-field/m-p/1700519#M53641</guid>
      <dc:creator>josh_bee</dc:creator>
      <dc:date>2020-05-10T23:16:05Z</dc:date>
    </item>
    <item>
      <title>Re: Filter based on substring in field</title>
      <link>https://community.qlik.com/t5/App-Development/Filter-based-on-substring-in-field/m-p/1700849#M53662</link>
      <description>&lt;P&gt;Can you give me some examples ?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;are you ok for an UI solution instead of the script solution ?&lt;/P&gt;</description>
      <pubDate>Mon, 11 May 2020 23:50:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Filter-based-on-substring-in-field/m-p/1700849#M53662</guid>
      <dc:creator>Taoufiq_Zarra</dc:creator>
      <dc:date>2020-05-11T23:50:12Z</dc:date>
    </item>
  </channel>
</rss>

