<?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: Pick or Match using a Variable in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Pick-or-Match-using-a-Variable/m-p/1567251#M743130</link>
    <description>&lt;P&gt;PERFECT!!!!!&amp;nbsp; &amp;nbsp;Exactly what I was looking for.&amp;nbsp; &amp;nbsp;Thanks for removing about 1000 pounds of stress.&lt;/P&gt;&lt;P&gt;Can you explain the function a bit so I can learn the components??&lt;/P&gt;</description>
    <pubDate>Tue, 09 Apr 2019 22:09:17 GMT</pubDate>
    <dc:creator>gfisch13</dc:creator>
    <dc:date>2019-04-09T22:09:17Z</dc:date>
    <item>
      <title>Pick or Match using a Variable</title>
      <link>https://community.qlik.com/t5/QlikView/Pick-or-Match-using-a-Variable/m-p/1567184#M743125</link>
      <description>&lt;P&gt;Hi All, hoping someone could help me with a problem I've been having.&lt;/P&gt;&lt;P&gt;1) I have and inline table that I've created from a list of keywords (below), I'm loading this from my script.&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;2) I've created a variable called vKeyword that uses the GetFieldSelections function to store all my selections.&amp;nbsp; (I'm not certain that this is the correct use of the function).&lt;/P&gt;&lt;P&gt;3) I want to match the values that are stored in vKeyword in my main table to a field called ITEM_DSCR.&amp;nbsp; &amp;nbsp;The variable can store one or multiple items.&lt;/P&gt;&lt;P&gt;4)&amp;nbsp; I've gone into document settings and created actions for the ITEM_DSCR field but when I make a selection nothing is happening.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I make a selection I'd like to see all occurences of my keyword selections in my ITEM_DSCR list box and in turn I would expect the rest of my charts to change dynamically.&lt;/P&gt;&lt;P&gt;I'm sorry for the lengthy entry, just trying to give enough detail.&amp;nbsp; &amp;nbsp;Really would appreciate some help on this.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in Advance!&lt;/P&gt;&lt;P&gt;George&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Keywords:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;KEYWORD&lt;BR /&gt;TICKETS&lt;BR /&gt;IPOD&lt;BR /&gt;IPAD&lt;BR /&gt;CAMERA&lt;BR /&gt;APPLE&lt;BR /&gt;IWATCH&lt;BR /&gt;TV&lt;BR /&gt;FEE&lt;BR /&gt;CONSULT&lt;BR /&gt;MISC&lt;BR /&gt;SERVICE&lt;BR /&gt;RENDER&lt;BR /&gt;LIAISON&lt;BR /&gt;TIP&lt;BR /&gt;PROCES&lt;BR /&gt;FACIL&lt;BR /&gt;EXPED&lt;BR /&gt;CASH&lt;BR /&gt;];&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 21:05:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pick-or-Match-using-a-Variable/m-p/1567184#M743125</guid>
      <dc:creator>gfisch13</dc:creator>
      <dc:date>2024-11-16T21:05:06Z</dc:date>
    </item>
    <item>
      <title>Re: Pick or Match using a Variable</title>
      <link>https://community.qlik.com/t5/QlikView/Pick-or-Match-using-a-Variable/m-p/1567201#M743126</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;If what you want is a cut down list of the possible ITEM_DESC values in a different field called KEYWORD then I would try a different approach. So you could either join your keyword table to your data table, or create an association, which my toy script does;&lt;/P&gt;&lt;PRE&gt;Keywords:
Load
	*,
	KEYWORD AS ITEM_DESC;
LOAD * INLINE [
	KEYWORD
	TICKETS
	IPOD
];

data:
LOAD * INLINE [
	ITEM_DESC, VALUE
	TICKETS, 10
	IPOD, 5
	PHONE, 7
];&lt;/PRE&gt;&lt;P&gt;So with no selections 'PHONE' is not in the keyword list;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="20190409_1.png" style="width: 220px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/9818iDCF7E15DBC58B878/image-size/large?v=v2&amp;amp;px=999" role="button" title="20190409_1.png" alt="20190409_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;But a normal selection reduces the data as expected;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="20190409_2.png" style="width: 218px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/9820i222F4D1DC6CBAC8E/image-size/large?v=v2&amp;amp;px=999" role="button" title="20190409_2.png" alt="20190409_2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Chris.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2019 19:46:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pick-or-Match-using-a-Variable/m-p/1567201#M743126</guid>
      <dc:creator>chrismarlow</dc:creator>
      <dc:date>2019-04-09T19:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: Pick or Match using a Variable</title>
      <link>https://community.qlik.com/t5/QlikView/Pick-or-Match-using-a-Variable/m-p/1567209#M743128</link>
      <description>&lt;P&gt;Hi Chris - I appreciate the feedback.&amp;nbsp; Please see my picture attached, as that depicts a clearer statement on what I'm trying to do.&amp;nbsp; &amp;nbsp;I really don't want to remove any values, I just want what I select to return all the values in the ITEM_DSCR field and change my charts upon selection.&amp;nbsp; &amp;nbsp; Hopefully this clarifies, I'm a really junior user of the product so I'm sorry if this sounds simplistic.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2019 20:02:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pick-or-Match-using-a-Variable/m-p/1567209#M743128</guid>
      <dc:creator>gfisch13</dc:creator>
      <dc:date>2019-04-09T20:02:09Z</dc:date>
    </item>
    <item>
      <title>Re: Pick or Match using a Variable</title>
      <link>https://community.qlik.com/t5/QlikView/Pick-or-Match-using-a-Variable/m-p/1567224#M743129</link>
      <description>&lt;P&gt;Ahhhh.&lt;/P&gt;&lt;P&gt;So you want to do a wildmatch from a column with a list of key words into another column where these words are parts of strings?&lt;/P&gt;&lt;P&gt;So going back to your actions try;&lt;/P&gt;&lt;P&gt;='(*'&amp;amp;GetFieldSelections(KEYWORD,'*|*')&amp;amp;'*)'&lt;/P&gt;&lt;P&gt;As your search string on ITEM_DSCR select in field triggered by KEYWORD on select&amp;nbsp; action;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="20190409_3.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/9821iFA05F4E614870044/image-size/large?v=v2&amp;amp;px=999" role="button" title="20190409_3.png" alt="20190409_3.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Let me know if that is better (or worse :))&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Chris.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2019 20:39:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pick-or-Match-using-a-Variable/m-p/1567224#M743129</guid>
      <dc:creator>chrismarlow</dc:creator>
      <dc:date>2019-04-09T20:39:25Z</dc:date>
    </item>
    <item>
      <title>Re: Pick or Match using a Variable</title>
      <link>https://community.qlik.com/t5/QlikView/Pick-or-Match-using-a-Variable/m-p/1567251#M743130</link>
      <description>&lt;P&gt;PERFECT!!!!!&amp;nbsp; &amp;nbsp;Exactly what I was looking for.&amp;nbsp; &amp;nbsp;Thanks for removing about 1000 pounds of stress.&lt;/P&gt;&lt;P&gt;Can you explain the function a bit so I can learn the components??&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2019 22:09:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pick-or-Match-using-a-Variable/m-p/1567251#M743130</guid>
      <dc:creator>gfisch13</dc:creator>
      <dc:date>2019-04-09T22:09:17Z</dc:date>
    </item>
    <item>
      <title>Re: Pick or Match using a Variable</title>
      <link>https://community.qlik.com/t5/QlikView/Pick-or-Match-using-a-Variable/m-p/1567443#M743131</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Glad it helped.&lt;/P&gt;&lt;P&gt;The function in total is coming up with a string that would actually work as a search string if you typed it in.&lt;/P&gt;&lt;P&gt;So the ( and ) at the start and end let the middle be structured as a pipe delimited list (pipe being OR). To get the pipes and use as wild cards need to add * inbetween the brackets and then get a list delimited by *|*.&lt;/P&gt;&lt;P&gt;Therefore the parameters of the Get function are the field and the delimiter.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Not sure if above helps or is just more confusing...&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Chris.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Apr 2019 09:00:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pick-or-Match-using-a-Variable/m-p/1567443#M743131</guid>
      <dc:creator>chrismarlow</dc:creator>
      <dc:date>2019-04-10T09:00:38Z</dc:date>
    </item>
    <item>
      <title>Re: Pick or Match using a Variable</title>
      <link>https://community.qlik.com/t5/QlikView/Pick-or-Match-using-a-Variable/m-p/1568339#M743132</link>
      <description>&lt;P&gt;Chris - thanks again for the explanation it was perfect and easy to understand.&amp;nbsp; I was also able to explain to a coworker so that's a win win!!!!&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2019 17:08:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pick-or-Match-using-a-Variable/m-p/1568339#M743132</guid>
      <dc:creator>gfisch13</dc:creator>
      <dc:date>2019-04-11T17:08:28Z</dc:date>
    </item>
  </channel>
</rss>

