<?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: search specifics words in multiple dimensions in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/search-specifics-words-in-multiple-dimensions/m-p/1816627#M66846</link>
    <description>&lt;P&gt;You will want to make this table driven.&amp;nbsp; A simple example using an inline table, would be to add the following to the load script after the Words table is loaded.&lt;/P&gt;&lt;P&gt;Join (Words)&lt;BR /&gt;Load * inline [&lt;BR /&gt;Word, WordML&lt;BR /&gt;data, data/veri&lt;BR /&gt;veir, data/veri&lt;BR /&gt;license, license/ruhsat&lt;BR /&gt;rushat, license/ruhsat&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;You would need to add 2 rows for each word.&amp;nbsp; One row for each language with the second value the same combined words for each row.&lt;/P&gt;&lt;P&gt;Then, in your filter object, you could just use WordML, with using the aggr() function in my previous post.&amp;nbsp; WordML will only contain the words you want to display and should filter the data properly.&lt;/P&gt;</description>
    <pubDate>Mon, 21 Jun 2021 14:46:41 GMT</pubDate>
    <dc:creator>GaryGiles</dc:creator>
    <dc:date>2021-06-21T14:46:41Z</dc:date>
    <item>
      <title>search specifics words in multiple dimensions</title>
      <link>https://community.qlik.com/t5/App-Development/search-specifics-words-in-multiple-dimensions/m-p/1816204#M66787</link>
      <description>&lt;P&gt;Hi everyone, I need to check multiple specific words in 3 dimensions: [entry purpose], [description], [comments], the list of specific words are: data, hosting, roaming, AWS, Oracle, license, app, iPhone, etc. &lt;U&gt;without using any extension(as my client won't allow to do that),&lt;/U&gt; is there a way to create a dropdown list of these words and use it as a filter to find out the relevant records?&lt;/P&gt;&lt;P&gt;this is the sample data, I coloured the list of words in red, (1)&amp;nbsp; is it possible to create a filter pane having the list of&amp;nbsp;specific words?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SL2_0-1624044259186.png" style="width: 665px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/57108iEE9DC5D0B9640D62/image-dimensions/665x216?v=v2" width="665" height="216" role="button" title="SL2_0-1624044259186.png" alt="SL2_0-1624044259186.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;(2) after the filter pane is created, when I filter on 'data', the result should be looking like&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SL2_1-1624044535485.png" style="width: 767px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/57109i8686C4D86E6E7049/image-dimensions/767x69?v=v2" width="767" height="69" role="button" title="SL2_1-1624044535485.png" alt="SL2_1-1624044535485.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;can anyone help me on this? Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jun 2021 19:30:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/search-specifics-words-in-multiple-dimensions/m-p/1816204#M66787</guid>
      <dc:creator>SL2</dc:creator>
      <dc:date>2021-06-18T19:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: search specifics words in multiple dimensions</title>
      <link>https://community.qlik.com/t5/App-Development/search-specifics-words-in-multiple-dimensions/m-p/1816215#M66791</link>
      <description>&lt;P&gt;Assuming that your table is named Entry, you can add the following to the load script to create a table with individual words as a field, each tied to an [entry ID].&amp;nbsp; It makes use of the SubField() function:&lt;/P&gt;&lt;P&gt;Words:&lt;BR /&gt;Load SubField([entry purpose],' ') as Word,&lt;BR /&gt;'entry purpose' as EntryField,&lt;BR /&gt;[entry ID]&lt;BR /&gt;Resident Entry;&lt;/P&gt;&lt;P&gt;Load SubField([description],' ') as Word,&lt;BR /&gt;'description' as EntryField,&lt;BR /&gt;[entry ID]&lt;BR /&gt;Resident Entry;&lt;/P&gt;&lt;P&gt;Load SubField([comments],' ') as Word,&lt;BR /&gt;'comments' as EntryField,&lt;BR /&gt;[entry ID]&lt;BR /&gt;Resident Entry;&lt;/P&gt;&lt;P&gt;Then, you can use the field [Word] in your filter pane.&amp;nbsp; To limit the words that can filter on, you can use the following as the expression for the dimension in the filter pane.&lt;/P&gt;&lt;P&gt;=aggr(Only({$&amp;lt;Word={'data','hosting','roaming','Oracle','license','app','iPhone'}&amp;gt;}Word), Word)&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jun 2021 20:48:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/search-specifics-words-in-multiple-dimensions/m-p/1816215#M66791</guid>
      <dc:creator>GaryGiles</dc:creator>
      <dc:date>2021-06-18T20:48:42Z</dc:date>
    </item>
    <item>
      <title>Re: search specifics words in multiple dimensions</title>
      <link>https://community.qlik.com/t5/App-Development/search-specifics-words-in-multiple-dimensions/m-p/1816225#M66792</link>
      <description>&lt;P&gt;Hi Gary, thanks for your reply!&lt;/P&gt;&lt;P&gt;I tried amending the load script but come across error:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SL2_0-1624051911205.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/57110iA3B0E7A43EDA1A19/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SL2_0-1624051911205.png" alt="SL2_0-1624051911205.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;the load script looks like:&lt;/P&gt;&lt;P&gt;table name is [Sheet1]&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SL2_1-1624051963795.png" style="width: 702px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/57111iA45F37DC91620FF4/image-dimensions/702x460?v=v2" width="702" height="460" role="button" title="SL2_1-1624051963795.png" alt="SL2_1-1624051963795.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Could you please suggest how to fix it? the [sheet1] data is exactly of same size as that in my post. Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jun 2021 21:34:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/search-specifics-words-in-multiple-dimensions/m-p/1816225#M66792</guid>
      <dc:creator>SL2</dc:creator>
      <dc:date>2021-06-18T21:34:20Z</dc:date>
    </item>
    <item>
      <title>Re: search specifics words in multiple dimensions</title>
      <link>https://community.qlik.com/t5/App-Development/search-specifics-words-in-multiple-dimensions/m-p/1816297#M66805</link>
      <description>&lt;P&gt;It looks like you left out the space between the quotes in the subfield function:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;My post was:&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Load SubField([entry purpose],' ') as Word,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Yours looks like:&amp;nbsp; Load SubField([entry purpose],'') as Word,&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;When I removed the space on my end, I was able to reproduce the error.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;You will need to add the space in each of the load statements.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 19 Jun 2021 20:26:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/search-specifics-words-in-multiple-dimensions/m-p/1816297#M66805</guid>
      <dc:creator>GaryGiles</dc:creator>
      <dc:date>2021-06-19T20:26:59Z</dc:date>
    </item>
    <item>
      <title>Re: search specifics words in multiple dimensions</title>
      <link>https://community.qlik.com/t5/App-Development/search-specifics-words-in-multiple-dimensions/m-p/1816610#M66843</link>
      <description>&lt;P&gt;Thanks Gary! one more extended question: if the data has 2 languages, English and Turkish, let's say data in Turkish is 'veri', and I want to find out both 'data' and 'veri' in those dimensions but in the filter I only want to show one value displaying as 'data/veri' rather than showing 'data' and 'veri' separately. Is there a way to do that? Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 21 Jun 2021 14:20:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/search-specifics-words-in-multiple-dimensions/m-p/1816610#M66843</guid>
      <dc:creator>SL2</dc:creator>
      <dc:date>2021-06-21T14:20:28Z</dc:date>
    </item>
    <item>
      <title>Re: search specifics words in multiple dimensions</title>
      <link>https://community.qlik.com/t5/App-Development/search-specifics-words-in-multiple-dimensions/m-p/1816627#M66846</link>
      <description>&lt;P&gt;You will want to make this table driven.&amp;nbsp; A simple example using an inline table, would be to add the following to the load script after the Words table is loaded.&lt;/P&gt;&lt;P&gt;Join (Words)&lt;BR /&gt;Load * inline [&lt;BR /&gt;Word, WordML&lt;BR /&gt;data, data/veri&lt;BR /&gt;veir, data/veri&lt;BR /&gt;license, license/ruhsat&lt;BR /&gt;rushat, license/ruhsat&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;You would need to add 2 rows for each word.&amp;nbsp; One row for each language with the second value the same combined words for each row.&lt;/P&gt;&lt;P&gt;Then, in your filter object, you could just use WordML, with using the aggr() function in my previous post.&amp;nbsp; WordML will only contain the words you want to display and should filter the data properly.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Jun 2021 14:46:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/search-specifics-words-in-multiple-dimensions/m-p/1816627#M66846</guid>
      <dc:creator>GaryGiles</dc:creator>
      <dc:date>2021-06-21T14:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: search specifics words in multiple dimensions</title>
      <link>https://community.qlik.com/t5/App-Development/search-specifics-words-in-multiple-dimensions/m-p/1816660#M66850</link>
      <description>&lt;P&gt;Thanks Gary! It works!&lt;/P&gt;</description>
      <pubDate>Mon, 21 Jun 2021 16:45:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/search-specifics-words-in-multiple-dimensions/m-p/1816660#M66850</guid>
      <dc:creator>SL2</dc:creator>
      <dc:date>2021-06-21T16:45:30Z</dc:date>
    </item>
  </channel>
</rss>

