<?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: Selection In List Box Defined With An Expression in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Selection-In-List-Box-Defined-With-An-Expression/m-p/1577285#M597210</link>
    <description>&lt;P&gt;Hi Sultanam,&lt;/P&gt;&lt;P&gt;I have another query regarding triggers.&lt;/P&gt;&lt;P&gt;In my dashboard, i have multiple containers so now i want to use triggers in containers, is that possible?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;</description>
    <pubDate>Tue, 07 May 2019 10:31:57 GMT</pubDate>
    <dc:creator>ManiSK</dc:creator>
    <dc:date>2019-05-07T10:31:57Z</dc:date>
    <item>
      <title>Selection In List Box Defined With An Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Selection-In-List-Box-Defined-With-An-Expression/m-p/1572412#M597204</link>
      <description>&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Month&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Apr 2019&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;May 2019&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Apr 2019|May 2019&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have above list box, now i need to create another list box with month names like below one.&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;Month names&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Apr 2019&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;May 2019&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So now here if i select Apr 2019 from (month names) list box, both Apr 2019 and&amp;nbsp;Apr 2019|May 2019 should get selected from (month) list box and if i select May 2019,&amp;nbsp;both May 2019 and&amp;nbsp;Apr 2019|May 2019.&lt;/P&gt;&lt;P&gt;To achieve the above i tried with below conditions&amp;nbsp;&lt;/P&gt;&lt;P&gt;if (WildMatch(Month,'*Apr*'),'Apr 2019',&lt;BR /&gt;if (WildMatch(Month,'*May*'),'May 2019'))&lt;/P&gt;&lt;P&gt;but this works only for Apr 2019 and for May 2019 it selects only May 2019 not selecting&amp;nbsp;Apr 2019|May 2019&lt;/P&gt;&lt;P&gt;could someone help me on this?&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2019 05:01:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selection-In-List-Box-Defined-With-An-Expression/m-p/1572412#M597204</guid>
      <dc:creator>ManiSK</dc:creator>
      <dc:date>2019-04-24T05:01:09Z</dc:date>
    </item>
    <item>
      <title>Re: Selection In List Box Defined With An Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Selection-In-List-Box-Defined-With-An-Expression/m-p/1572415#M597205</link>
      <description>&lt;P&gt;Using an expression does not work here because when you click on the expression, you are really making a selection on the underlying field. The April/May value maps to April, it cannot map to May as well.&lt;/P&gt;&lt;P&gt;You need to do this in the load script to create a field associated correctly. For example:&lt;/P&gt;&lt;PRE&gt;Load * Inline
[
	Month, MonthName
	Apr 2019,Apr 2019
	May 2019,May 2019
	Apr 2019|May 2019,Apr 2019
	Apr 2019|May 2019,May 2019
];&lt;/PRE&gt;</description>
      <pubDate>Wed, 24 Apr 2019 05:09:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selection-In-List-Box-Defined-With-An-Expression/m-p/1572415#M597205</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2019-04-24T05:09:36Z</dc:date>
    </item>
    <item>
      <title>Re: Selection In List Box Defined With An Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Selection-In-List-Box-Defined-With-An-Expression/m-p/1572490#M597206</link>
      <description>&lt;P&gt;Hi Mani,&lt;/P&gt;&lt;P&gt;for achieving below you need to create a Variable in front end. try below one&lt;/P&gt;&lt;P&gt;vMonth = '*'&amp;nbsp; &amp;amp;&amp;nbsp; GetFieldSelections([Month names])&amp;nbsp; &amp;amp; '*'&lt;/P&gt;&lt;P&gt;Use trigger&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;SPAN&gt;setting&amp;gt;&amp;gt;Document&amp;gt;&amp;gt;Triggers&amp;gt;&amp;gt;Variable event trigger&amp;gt;&amp;gt; on change&lt;BR /&gt;&lt;BR /&gt;Trigger: select in field&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Field&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;Month&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Search String&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;=vMonth&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;then you can select anything from Month name list box you will get your put.&lt;BR /&gt;&lt;BR /&gt;let me know if you face any issue&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2019 07:35:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selection-In-List-Box-Defined-With-An-Expression/m-p/1572490#M597206</guid>
      <dc:creator>sultanam</dc:creator>
      <dc:date>2019-04-24T07:35:32Z</dc:date>
    </item>
    <item>
      <title>Re: Selection In List Box Defined With An Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Selection-In-List-Box-Defined-With-An-Expression/m-p/1572620#M597207</link>
      <description>&lt;P&gt;Hi Sultanam,&lt;/P&gt;&lt;P&gt;Thanks for you response, tried with that but still not working, facing the same issue.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2019 10:50:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selection-In-List-Box-Defined-With-An-Expression/m-p/1572620#M597207</guid>
      <dc:creator>ManiSK</dc:creator>
      <dc:date>2019-04-24T10:50:12Z</dc:date>
    </item>
    <item>
      <title>Re: Selection In List Box Defined With An Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Selection-In-List-Box-Defined-With-An-Expression/m-p/1572773#M597208</link>
      <description>&lt;P&gt;Hi Mani,&lt;/P&gt;&lt;P&gt;please find the attached file as reference. If you face the same issue let me know.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2019 13:47:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selection-In-List-Box-Defined-With-An-Expression/m-p/1572773#M597208</guid>
      <dc:creator>sultanam</dc:creator>
      <dc:date>2019-04-24T13:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: Selection In List Box Defined With An Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Selection-In-List-Box-Defined-With-An-Expression/m-p/1574808#M597209</link>
      <description>&lt;P&gt;It worked perfectly . Thank you so much&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2019 06:57:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selection-In-List-Box-Defined-With-An-Expression/m-p/1574808#M597209</guid>
      <dc:creator>ManiSK</dc:creator>
      <dc:date>2019-04-30T06:57:10Z</dc:date>
    </item>
    <item>
      <title>Re: Selection In List Box Defined With An Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Selection-In-List-Box-Defined-With-An-Expression/m-p/1577285#M597210</link>
      <description>&lt;P&gt;Hi Sultanam,&lt;/P&gt;&lt;P&gt;I have another query regarding triggers.&lt;/P&gt;&lt;P&gt;In my dashboard, i have multiple containers so now i want to use triggers in containers, is that possible?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2019 10:31:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selection-In-List-Box-Defined-With-An-Expression/m-p/1577285#M597210</guid>
      <dc:creator>ManiSK</dc:creator>
      <dc:date>2019-05-07T10:31:57Z</dc:date>
    </item>
    <item>
      <title>Re: Selection In List Box Defined With An Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Selection-In-List-Box-Defined-With-An-Expression/m-p/1577835#M597211</link>
      <description>&lt;P&gt;Hi Mani&lt;/P&gt;&lt;P&gt;As per my knowledge there is no option to use trigger on container.&lt;/P&gt;&lt;P&gt;If you have any query kindly post here i will try to help you on that.&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Sultan&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2019 09:21:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selection-In-List-Box-Defined-With-An-Expression/m-p/1577835#M597211</guid>
      <dc:creator>sultanam</dc:creator>
      <dc:date>2019-05-08T09:21:34Z</dc:date>
    </item>
  </channel>
</rss>

