<?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 make a data selection trigger? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-make-a-data-selection-trigger/m-p/1426170#M429513</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So I haven't had much luck with this.&amp;nbsp; I have tried a few things using the suggestions above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Right now as a trigger I have:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;='(' &amp;amp;concat(distinct {&amp;lt;ROCKApplication={'AGG'}&amp;gt;*&amp;lt;ROCKApplication={'Fill'}&amp;gt;} chr(34) &amp;amp; %customer &amp;amp; chr(34)) &amp;amp;')'&lt;/P&gt;&lt;P&gt;on the field %customer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, when the sheet is activated, I cannot see anything in the 'Current Selections Box'.&lt;/P&gt;&lt;P&gt;Should this appear in the current selection box?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried another trigger, on a different field, and in the Search String i just have (AGG|Fill) and while it does not accomplish what i am trying to do, at least in the current selections box i can see that these fields have been selected.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Oct 2017 15:29:07 GMT</pubDate>
    <dc:creator>tomdabek</dc:creator>
    <dc:date>2017-10-10T15:29:07Z</dc:date>
    <item>
      <title>How to make a data selection trigger?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-make-a-data-selection-trigger/m-p/1426166#M429509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;We have an application where customers can make 2 types of purchases - lets call them balls and sticks, the field is called 'SaleType'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to activate a trigger so when a user opens a particular sheet, only customers who have purchased both balls and sticks are selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any guidance is appreciated.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Oct 2017 12:31:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-make-a-data-selection-trigger/m-p/1426166#M429509</guid>
      <dc:creator>tomdabek</dc:creator>
      <dc:date>2017-10-10T12:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a data selection trigger?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-make-a-data-selection-trigger/m-p/1426167#M429510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe with something like this as search-expression within a the trigger:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;= '("' &amp;amp; concat({&amp;lt; SaleType = {'balls'}&amp;gt; * &amp;lt; SaleType = {'sticks'}&amp;gt;} distinct customer, '"|"') &amp;amp; '")'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Oct 2017 12:50:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-make-a-data-selection-trigger/m-p/1426167#M429510</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2017-10-10T12:50:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a data selection trigger?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-make-a-data-selection-trigger/m-p/1426168#M429511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you sure that a trigger is the best way to do this? I would use set expressions that filter for both balls and sticks, rather than a triggered selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a chart/table, something like&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Sum({&amp;lt;Customer = P({&amp;lt;SaleType = {'balls'}&amp;gt;*&amp;lt;SaleType = {'sticks'}&amp;gt;} Customer)&amp;gt;} Sales)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(although its easier to develop and test something like this if you provide a sample qvw file)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Oct 2017 12:53:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-make-a-data-selection-trigger/m-p/1426168#M429511</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2017-10-10T12:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a data selection trigger?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-make-a-data-selection-trigger/m-p/1426169#M429512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sheet on which you want to select the customers, go to sheet properties-&amp;gt; Triggers -&amp;gt; Add Action on Activation of sheet -&amp;gt; Add-&amp;gt;Selections-&amp;gt;Select in Field-&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field : &lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;Customer&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Search Staring : ='(' &amp;amp;concat(distinct {&amp;lt;SaleType={'Balls'}&amp;gt;*&amp;lt;&lt;SPAN style="font-size: 13.3333px;"&gt;SaleType=&lt;/SPAN&gt;{'sticks'}&amp;gt;} chr(34) &amp;amp; &lt;STRONG&gt;Customer&lt;/STRONG&gt; &amp;amp; chr(34)) &amp;amp;')'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Oct 2017 12:53:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-make-a-data-selection-trigger/m-p/1426169#M429512</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2017-10-10T12:53:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a data selection trigger?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-make-a-data-selection-trigger/m-p/1426170#M429513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So I haven't had much luck with this.&amp;nbsp; I have tried a few things using the suggestions above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Right now as a trigger I have:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;='(' &amp;amp;concat(distinct {&amp;lt;ROCKApplication={'AGG'}&amp;gt;*&amp;lt;ROCKApplication={'Fill'}&amp;gt;} chr(34) &amp;amp; %customer &amp;amp; chr(34)) &amp;amp;')'&lt;/P&gt;&lt;P&gt;on the field %customer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, when the sheet is activated, I cannot see anything in the 'Current Selections Box'.&lt;/P&gt;&lt;P&gt;Should this appear in the current selection box?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried another trigger, on a different field, and in the Search String i just have (AGG|Fill) and while it does not accomplish what i am trying to do, at least in the current selections box i can see that these fields have been selected.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Oct 2017 15:29:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-make-a-data-selection-trigger/m-p/1426170#M429513</guid>
      <dc:creator>tomdabek</dc:creator>
      <dc:date>2017-10-10T15:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a data selection trigger?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-make-a-data-selection-trigger/m-p/1426171#M429514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 39.661px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Try this&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 28.6924px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 28.6924px;"&gt;='(' &amp;amp;concat(distinct {&amp;lt;ROCKApplication={'AGG'}&amp;gt;*&amp;lt;ROCKApplication={'Fill'}&amp;gt;} chr(34) &amp;amp; %customer &amp;amp; chr(34), ', ') &amp;amp;')'&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Oct 2017 15:49:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-make-a-data-selection-trigger/m-p/1426171#M429514</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2017-10-10T15:49:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a data selection trigger?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-make-a-data-selection-trigger/m-p/1426172#M429515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The delimiter for the dimension-values needs to be the pipe-sign '|' and not the comma.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Oct 2017 15:52:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-make-a-data-selection-trigger/m-p/1426172#M429515</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2017-10-10T15:52:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a data selection trigger?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-make-a-data-selection-trigger/m-p/1426173#M429516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think with single quotes and comma its works. Not sure &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 28.6924px;"&gt;='(' &amp;amp;concat(distinct {&amp;lt;ROCKApplication={'AGG'}&amp;gt;*&amp;lt;ROCKApplication={'Fill'}&amp;gt;} chr(39) &amp;amp; %customer &amp;amp; chr(39), ', ') &amp;amp;')'&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Oct 2017 16:06:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-make-a-data-selection-trigger/m-p/1426173#M429516</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2017-10-10T16:06:58Z</dc:date>
    </item>
  </channel>
</rss>

