<?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: Trigger--listbox in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Trigger-listbox/m-p/883060#M307989</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, you need to set Field Event Trigger&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select field qtr, set add action , go to select in field and pass field Final Qtr and in select string write getfieldselection(Qtr).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;make sure both field value should be same&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Abhay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 May 2015 05:14:28 GMT</pubDate>
    <dc:creator>abhaysingh</dc:creator>
    <dc:date>2015-05-19T05:14:28Z</dc:date>
    <item>
      <title>Trigger--listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Trigger-listbox/m-p/883055#M307984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a list box with with Qtr = Q1, Q2 and Q3.&lt;/P&gt;&lt;P&gt;I have another list box with Final Qtr = Q1, Q2, Q3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I select on Qtr= Q1, I want to create a trigger to pick up Final Qtr = Q1 too.&lt;/P&gt;&lt;P&gt;Also, In the selection box i want to see only Qtr = Q1 selected.&lt;/P&gt;&lt;P&gt;I dont want user to see that calculation happening at backend. So Current selectio box should show only Qtr = Q1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 May 2015 23:49:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trigger-listbox/m-p/883055#M307984</guid>
      <dc:creator>rdsuperlike</dc:creator>
      <dc:date>2015-05-18T23:49:11Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger--listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Trigger-listbox/m-p/883056#M307985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The answer is bellow.&lt;/P&gt;&lt;P&gt;Try to use Field Event Trigger&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/86855_Capture.PNG" style="height: 426px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2015 02:06:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trigger-listbox/m-p/883056#M307985</guid>
      <dc:creator>SergeyMak</dc:creator>
      <dc:date>2015-05-19T02:06:21Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger--listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Trigger-listbox/m-p/883057#M307986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;works fine.&lt;/P&gt;&lt;P&gt;But it doesn't work if I select Qtr 2 and 3 both.&lt;/P&gt;&lt;P&gt;I want that to be reflected too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, is there a way that If i use current selection box, I dont show final qtr values in the current selection box?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2015 04:50:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trigger-listbox/m-p/883057#M307986</guid>
      <dc:creator>rdsuperlike</dc:creator>
      <dc:date>2015-05-19T04:50:49Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger--listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Trigger-listbox/m-p/883058#M307987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you really need a trigger? I would define a globally evaluated variable (ie one with a leading = sign), like this (if you define it in your script (assuming Qtr is a string field):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set vMaxQ = =MaxString(Qtr);&amp;nbsp;&amp;nbsp; // the = = is not a typo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This variable will contain the maximum possible Qtr, so if nothing is selected, it will be the max Qtr in your model, or if something is selected, it will contain the selected value (actually the max of the selected values).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use vMaxQ in set expressions and chart captions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sum({&amp;lt;Qtr = {"$(=vMaxQ)"}&amp;gt;} Sales)&amp;nbsp; //expression&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ='Sales for ' &amp;amp; vMaxQtr&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //caption or label&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2015 05:08:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trigger-listbox/m-p/883058#M307987</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-05-19T05:08:57Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger--listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Trigger-listbox/m-p/883059#M307988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No. We dont want to add any changes to the script&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2015 05:14:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trigger-listbox/m-p/883059#M307988</guid>
      <dc:creator>rdsuperlike</dc:creator>
      <dc:date>2015-05-19T05:14:26Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger--listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Trigger-listbox/m-p/883060#M307989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, you need to set Field Event Trigger&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select field qtr, set add action , go to select in field and pass field Final Qtr and in select string write getfieldselection(Qtr).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;make sure both field value should be same&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Abhay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2015 05:14:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trigger-listbox/m-p/883060#M307989</guid>
      <dc:creator>abhaysingh</dc:creator>
      <dc:date>2015-05-19T05:14:28Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger--listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Trigger-listbox/m-p/883061#M307990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the attached sample qvw. For not showing the selection in the current selection box, play the trick of &lt;EM&gt;HidePrefix system variable &lt;/EM&gt;in the script.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2015 05:15:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trigger-listbox/m-p/883061#M307990</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2015-05-19T05:15:38Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger--listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Trigger-listbox/m-p/883062#M307991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you don't want to change the script, then define the variable in the Variable Overview dialog. Define it with a leading = sign:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;=MaxString(Qtr)&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: 13px;"&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: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2015 05:20:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trigger-listbox/m-p/883062#M307991</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-05-19T05:20:17Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger--listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Trigger-listbox/m-p/883063#M307992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A href="https://community.qlik.com/qlik-users/26418"&gt;tresesco&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wonder if you can help me on how to hide the list box , take the example of your qvd , but to try do not hide me the picture, which is what I need , I attached to the example and mine , for you to see&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Help me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 May 2015 16:56:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trigger-listbox/m-p/883063#M307992</guid>
      <dc:creator />
      <dc:date>2015-05-21T16:56:00Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger--listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Trigger-listbox/m-p/883064#M307993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, did not get your point.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 May 2015 04:36:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trigger-listbox/m-p/883064#M307993</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2015-05-22T04:36:21Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger--listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Trigger-listbox/m-p/883065#M307994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for replying , understood the qvd for triggers,I did not know where to configure this condition &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; &lt;A href="https://community.qlik.com/qlik-users/26418"&gt;tresesco&lt;/A&gt;‌&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 May 2015 12:44:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trigger-listbox/m-p/883065#M307994</guid>
      <dc:creator />
      <dc:date>2015-05-22T12:44:39Z</dc:date>
    </item>
  </channel>
</rss>

