<?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 QV9 Trigger Multiselect in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/QV9-Trigger-Multiselect/m-p/221334#M74156</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;as far as i know, the only way to select more than one value in a field with this action is to use a wildcard in the search pattern&lt;/P&gt;&lt;P&gt;for example, selecting "A*" will select all values in that field beginning with A&lt;/P&gt;&lt;P&gt;you can use a macro with the Field.SelectValues method to achieve more complex selection&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 Oct 2009 21:00:27 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-10-21T21:00:27Z</dc:date>
    <item>
      <title>QV9 Trigger Multiselect</title>
      <link>https://community.qlik.com/t5/QlikView/QV9-Trigger-Multiselect/m-p/221333#M74155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;how can I create a trigger that selects more than one field.&lt;BR /&gt;I tried Triggers-&amp;gt;Edit Actions (on Activate Sheet) -&amp;gt; Select in Field&lt;/P&gt;&lt;P&gt;Is there something like and or &amp;amp; etc?&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Oct 2009 20:12:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QV9-Trigger-Multiselect/m-p/221333#M74155</guid>
      <dc:creator />
      <dc:date>2009-10-21T20:12:49Z</dc:date>
    </item>
    <item>
      <title>QV9 Trigger Multiselect</title>
      <link>https://community.qlik.com/t5/QlikView/QV9-Trigger-Multiselect/m-p/221334#M74156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;as far as i know, the only way to select more than one value in a field with this action is to use a wildcard in the search pattern&lt;/P&gt;&lt;P&gt;for example, selecting "A*" will select all values in that field beginning with A&lt;/P&gt;&lt;P&gt;you can use a macro with the Field.SelectValues method to achieve more complex selection&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Oct 2009 21:00:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QV9-Trigger-Multiselect/m-p/221334#M74156</guid>
      <dc:creator />
      <dc:date>2009-10-21T21:00:27Z</dc:date>
    </item>
    <item>
      <title>QV9 Trigger Multiselect</title>
      <link>https://community.qlik.com/t5/QlikView/QV9-Trigger-Multiselect/m-p/221335#M74157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Matt,&lt;/P&gt;&lt;P&gt;see the attached example: On the main sheet the "Select some Weeks" button&lt;/P&gt;&lt;P&gt;Good luck!&lt;/P&gt;&lt;P&gt;Rainer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Oct 2009 21:06:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QV9-Trigger-Multiselect/m-p/221335#M74157</guid>
      <dc:creator />
      <dc:date>2009-10-21T21:06:40Z</dc:date>
    </item>
    <item>
      <title>QV9 Trigger Multiselect</title>
      <link>https://community.qlik.com/t5/QlikView/QV9-Trigger-Multiselect/m-p/221336#M74158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;looks good for numbers, but selecting different text values might be a problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Oct 2009 22:25:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QV9-Trigger-Multiselect/m-p/221336#M74158</guid>
      <dc:creator />
      <dc:date>2009-10-21T22:25:23Z</dc:date>
    </item>
    <item>
      <title>QV9 Trigger Multiselect</title>
      <link>https://community.qlik.com/t5/QlikView/QV9-Trigger-Multiselect/m-p/221337#M74159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You could try the following macro for selecting multiple values from any field:&lt;/P&gt;&lt;P&gt;sub SelectionsProdArea&lt;/P&gt;&lt;P&gt;set ad = ActiveDocument&lt;/P&gt;&lt;P&gt;set vProdArea=ad.getfield("ProductArea")&lt;BR /&gt;&lt;BR /&gt; vProdArea.clear&lt;BR /&gt;&lt;BR /&gt; vProdArea.select ("100")&lt;BR /&gt; vProdArea.toggleselect ("200")&lt;BR /&gt; vProdArea.toggleselect ("400")&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards,&lt;/P&gt;&lt;P&gt;Johan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Mar 2010 11:09:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QV9-Trigger-Multiselect/m-p/221337#M74159</guid>
      <dc:creator />
      <dc:date>2010-03-18T11:09:33Z</dc:date>
    </item>
    <item>
      <title>QV9 Trigger Multiselect</title>
      <link>https://community.qlik.com/t5/QlikView/QV9-Trigger-Multiselect/m-p/221338#M74160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to use a expression to generate a selection you have to make a variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something like '=&amp;gt;27&amp;lt;' &amp;amp; week(today())&lt;/P&gt;&lt;P&gt;to select a financial year that starts in week 27.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the actionfield then add $(vVariablename).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetz, Halmar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2011 14:18:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QV9-Trigger-Multiselect/m-p/221338#M74160</guid>
      <dc:creator />
      <dc:date>2011-05-10T14:18:55Z</dc:date>
    </item>
    <item>
      <title>Re: QV9 Trigger Multiselect</title>
      <link>https://community.qlik.com/t5/QlikView/QV9-Trigger-Multiselect/m-p/221339#M74161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Matt,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find an example with multiple selection through triger. Hope this is what you wanted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Sajeevan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2011 14:53:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QV9-Trigger-Multiselect/m-p/221339#M74161</guid>
      <dc:creator />
      <dc:date>2011-05-10T14:53:42Z</dc:date>
    </item>
  </channel>
</rss>

