<?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: Customized List Box in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Customized-List-Box/m-p/1336134#M412125</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One best solution this for expression in list box rather direct field&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(Year &amp;lt;&amp;gt; 2018, Year)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Jul 2017 13:57:18 GMT</pubDate>
    <dc:creator>Anil_Babu_Samineni</dc:creator>
    <dc:date>2017-07-19T13:57:18Z</dc:date>
    <item>
      <title>Customized List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Customized-List-Box/m-p/1336133#M412124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In my data set I have Years&amp;nbsp; like 2018,2017,2016, etc.&amp;nbsp; I dont want to limit the script for 2018, but on the list box I would like to see only Current&amp;nbsp; and 3 Prev years, how can I do that ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2017 13:52:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Customized-List-Box/m-p/1336133#M412124</guid>
      <dc:creator>azmeerrehan</dc:creator>
      <dc:date>2017-07-19T13:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: Customized List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Customized-List-Box/m-p/1336134#M412125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One best solution this for expression in list box rather direct field&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(Year &amp;lt;&amp;gt; 2018, Year)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2017 13:57:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Customized-List-Box/m-p/1336134#M412125</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-07-19T13:57:18Z</dc:date>
    </item>
    <item>
      <title>Re: Customized List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Customized-List-Box/m-p/1336135#M412126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;=aggr(if(&lt;SPAN style="font-size: 13.3333px;"&gt;YearField&lt;/SPAN&gt;&amp;gt;= year(addyears(today().-3)) and &lt;STRONG style="font-size: 13.3333px;"&gt;&lt;EM&gt;YearField&lt;/EM&gt;&lt;/STRONG&gt;&amp;lt;= year(today()), YearField),&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&lt;EM&gt;YearField)&lt;/EM&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2017 14:04:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Customized-List-Box/m-p/1336135#M412126</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2017-07-19T14:04:29Z</dc:date>
    </item>
    <item>
      <title>Re: Customized List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Customized-List-Box/m-p/1336136#M412127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333px;"&gt;Create below variables:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;vNow: &lt;/STRONG&gt;Date(max(TOTAL DateYearField))&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;vPrev3: &lt;/STRONG&gt;$(vNow)-AddYears($(vNow),-3)&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Then in list box use below condition. in drop down select expression at the bottom most.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;=if(($(vNow) - DateYearField))&amp;gt;0) and ($(vNow) - DateYearField))&amp;lt;= $(vPrev3)),DateYearField)&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;IMG alt="LB.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/170747_LB.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2017 14:15:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Customized-List-Box/m-p/1336136#M412127</guid>
      <dc:creator>suryaa30</dc:creator>
      <dc:date>2017-07-19T14:15:39Z</dc:date>
    </item>
    <item>
      <title>Re: Customized List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Customized-List-Box/m-p/1336137#M412128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Maybe&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=IF(Year &amp;gt;= Year(Now())-3 and Year &amp;lt;= Year(Now()),Year)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2017 14:47:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Customized-List-Box/m-p/1336137#M412128</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2017-07-19T14:47:46Z</dc:date>
    </item>
    <item>
      <title>Re: Customized List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Customized-List-Box/m-p/1336138#M412129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Syntax does not look right&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2017 15:19:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Customized-List-Box/m-p/1336138#M412129</guid>
      <dc:creator>azmeerrehan</dc:creator>
      <dc:date>2017-07-19T15:19:53Z</dc:date>
    </item>
    <item>
      <title>Re: Customized List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Customized-List-Box/m-p/1336139#M412130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AGGR(If(YEAR&amp;gt;= year(today()) - 3 and YEAR &amp;lt;=year( today()), YEAR), YEAR) &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2017 15:32:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Customized-List-Box/m-p/1336139#M412130</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2017-07-19T15:32:12Z</dc:date>
    </item>
    <item>
      <title>Re: Customized List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Customized-List-Box/m-p/1336140#M412131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Simple way to do this is using calculated expression in listbox:&lt;/P&gt;&lt;P&gt;=Valuelist(Year(Today()),Year(Today())-1,Year(Today())-2,Year(Today())-3)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2017 15:42:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Customized-List-Box/m-p/1336140#M412131</guid>
      <dc:creator>passionate</dc:creator>
      <dc:date>2017-07-19T15:42:57Z</dc:date>
    </item>
  </channel>
</rss>

