<?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: List Box Issue in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/List-Box-Issue/m-p/1015373#M344184</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;You can put an onOpen trigger.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to -&amp;gt; Document Properties -&amp;gt; Triggers, and then select "Select in Field" action:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/114357_Capture.PNG" style="height: 421px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Feb 2016 18:07:52 GMT</pubDate>
    <dc:creator>sinanozdemir</dc:creator>
    <dc:date>2016-02-11T18:07:52Z</dc:date>
    <item>
      <title>List Box Issue</title>
      <link>https://community.qlik.com/t5/QlikView/List-Box-Issue/m-p/1015372#M344183</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a created a list box for Field "Year".&amp;nbsp; I currently have 7 Years if I list the " Year" field. I would see ,2016,2015,2014.......2009.&lt;/P&gt;&lt;P&gt;but users want to see only years Current, Current-1 and current-2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created a List Box with Expression &lt;/P&gt;&lt;P&gt;=If(Match(Year, $(vYearToday),$(vYearToday1),$(vYearToday2)), Year)and its working fine, I get 2016,2015 and 2014.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is I looses the option of Always one selected value.&amp;nbsp; So when the dashboard opens none of the Years is selected ,I would like for it to always have one selected value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I accomplish that&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Feb 2016 17:56:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-Box-Issue/m-p/1015372#M344183</guid>
      <dc:creator />
      <dc:date>2016-02-11T17:56:15Z</dc:date>
    </item>
    <item>
      <title>Re: List Box Issue</title>
      <link>https://community.qlik.com/t5/QlikView/List-Box-Issue/m-p/1015373#M344184</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;You can put an onOpen trigger.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to -&amp;gt; Document Properties -&amp;gt; Triggers, and then select "Select in Field" action:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/114357_Capture.PNG" style="height: 421px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Feb 2016 18:07:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-Box-Issue/m-p/1015373#M344184</guid>
      <dc:creator>sinanozdemir</dc:creator>
      <dc:date>2016-02-11T18:07:52Z</dc:date>
    </item>
    <item>
      <title>Re: List Box Issue</title>
      <link>https://community.qlik.com/t5/QlikView/List-Box-Issue/m-p/1015374#M344185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;"Always one Selected" is not available when using &amp;lt;Expression&amp;gt;. I think your only alternative is to create an additional field in the load that contains only those two years. Or possibly not load the other year's data at all if users don't want to see it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Feb 2016 19:34:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-Box-Issue/m-p/1015374#M344185</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2016-02-11T19:34:14Z</dc:date>
    </item>
    <item>
      <title>Re: List Box Issue</title>
      <link>https://community.qlik.com/t5/QlikView/List-Box-Issue/m-p/1015375#M344186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try with a trigger&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;select in field&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;=If(Match(Year, Year(today()), year(today())-1, Year(today())-2, Year(today())-3 ), Year, year(today()))&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Feb 2016 19:57:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-Box-Issue/m-p/1015375#M344186</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2016-02-11T19:57:05Z</dc:date>
    </item>
  </channel>
</rss>

