<?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 exclude a value from list box in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/how-to-exclude-a-value-from-list-box/m-p/1566887#M743295</link>
    <description>&lt;P&gt;I am not sure I understand? How is this related to excluding a value from list box? Is this a new requirement? or is this somehow linked?&lt;/P&gt;</description>
    <pubDate>Tue, 09 Apr 2019 11:51:49 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2019-04-09T11:51:49Z</dc:date>
    <item>
      <title>how to exclude a value from list box</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-exclude-a-value-from-list-box/m-p/1566862#M743289</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;my list box expression was like this in the list box&amp;nbsp;&lt;/P&gt;&lt;P&gt;=IF(YM.YEAR_1=2016,'2015-16',&lt;BR /&gt;IF(YM.YEAR_1=2017,'2016-17',&lt;BR /&gt;IF(YM.YEAR_1=2018,'2017-18',&lt;BR /&gt;IF( YM.YEAR_1=2019,'2018-19',&lt;BR /&gt;IF(YM.YEAR_1=2020,'2019-20',&lt;BR /&gt;IF(YM.YEAR_1=2021,'2020-21',&lt;BR /&gt;IF(YM.YEAR_1=2022,'2021-22',&lt;BR /&gt;&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;now i dont want to the year&amp;nbsp;YM.YEAR_1=2016 , how to write an expression to not show&amp;nbsp;YM.YEAR_1=2016 in the list box&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-exclude-a-value-from-list-box/m-p/1566862#M743289</guid>
      <dc:creator>venkat1</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: how to exclude a value from list box</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-exclude-a-value-from-list-box/m-p/1566864#M743290</link>
      <description>try some thing like this =IF( not match( YM.YEAR_1,'2016'),0 , IF(YM.YEAR_1=2017,'2016-17', IF(YM.YEAR_1=2018,'2017-18', IF( YM.YEAR_1=2019,'2018-19', IF(YM.YEAR_1=2020,'2019-20', IF(YM.YEAR_1=2021,'2020-21', IF(YM.YEAR_1=2022,'2021-22', ) ) ) ) ) ) )</description>
      <pubDate>Tue, 09 Apr 2019 11:21:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-exclude-a-value-from-list-box/m-p/1566864#M743290</guid>
      <dc:creator>vikasmahajan</dc:creator>
      <dc:date>2019-04-09T11:21:20Z</dc:date>
    </item>
    <item>
      <title>Re: how to exclude a value from list box</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-exclude-a-value-from-list-box/m-p/1566867#M743291</link>
      <description>&lt;P&gt;How about you just remove it from the if statement&lt;/P&gt;&lt;PRE&gt;=If(YM.YEAR_1 = 2017, '2016-17',
If(YM.YEAR_1 = 2018, '2017-18',
If( YM.YEAR_1 = 2019, '2018-19',
If(YM.YEAR_1 = 2020, '2019-20',
If(YM.YEAR_1 = 2021, '2020-21',
If(YM.YEAR_1 = 2022, '2021-22',
)
)
)
)
)
)&lt;/PRE&gt;</description>
      <pubDate>Tue, 09 Apr 2019 11:27:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-exclude-a-value-from-list-box/m-p/1566867#M743291</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-04-09T11:27:15Z</dc:date>
    </item>
    <item>
      <title>Re: how to exclude a value from list box</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-exclude-a-value-from-list-box/m-p/1566870#M743292</link>
      <description>&lt;P&gt;hi it was working if write like this&amp;nbsp;&lt;/P&gt;&lt;P&gt;=IF( not match( YM.YEAR_1,'2016'),&lt;BR /&gt;IF(YM.YEAR_1=2017,'2016-17',&lt;BR /&gt;IF(YM.YEAR_1=2018,'2017-18',&lt;BR /&gt;IF(YM.YEAR_1=2019,'2018-19',&lt;BR /&gt;IF(YM.YEAR_1=2020,'2019-20',&lt;BR /&gt;IF(YM.YEAR_1=2021,'2020-21',&lt;BR /&gt;IF(YM.YEAR_1=2022,'2021-22',&lt;BR /&gt;&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have another question for suppose if i want to hide 18 and 19 years, then how i tried this way it was showing error in expression.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2019 11:33:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-exclude-a-value-from-list-box/m-p/1566870#M743292</guid>
      <dc:creator>venkat1</dc:creator>
      <dc:date>2019-04-09T11:33:41Z</dc:date>
    </item>
    <item>
      <title>Re: how to exclude a value from list box</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-exclude-a-value-from-list-box/m-p/1566881#M743293</link>
      <description>You can exclude this in your load.&lt;BR /&gt;If you want to keep this year on your load, you can use the expression bellow&lt;BR /&gt;&lt;BR /&gt;if(not match(FIELDNAME,'CRITERIA'),FIELDNAME)</description>
      <pubDate>Tue, 09 Apr 2019 11:46:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-exclude-a-value-from-list-box/m-p/1566881#M743293</guid>
      <dc:creator>andradetobias</dc:creator>
      <dc:date>2019-04-09T11:46:48Z</dc:date>
    </item>
    <item>
      <title>Re: how to exclude a value from list box</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-exclude-a-value-from-list-box/m-p/1566886#M743294</link>
      <description>&lt;P&gt;hi sunny&amp;nbsp;&lt;/P&gt;&lt;P&gt;i need a help from you regarding a scenario.&lt;/P&gt;&lt;P&gt;i am having year and month list boxes and pivot table with sales of gold and diamond by branch wises,&lt;/P&gt;&lt;P&gt;my requirement is to show by default max(date) sales ,where date fields are different for the gold and diamond,eg. g.vou_date,d.vou_date, now if i select the year and month list box then sales should come accordingly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i tried with open sheet triggers of two field events with d.vou_date and g.vou_date but it was not working.&amp;nbsp;&lt;/P&gt;&lt;P&gt;can you please help me how to do this scenario.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2019 11:50:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-exclude-a-value-from-list-box/m-p/1566886#M743294</guid>
      <dc:creator>venkat1</dc:creator>
      <dc:date>2019-04-09T11:50:06Z</dc:date>
    </item>
    <item>
      <title>Re: how to exclude a value from list box</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-exclude-a-value-from-list-box/m-p/1566887#M743295</link>
      <description>&lt;P&gt;I am not sure I understand? How is this related to excluding a value from list box? Is this a new requirement? or is this somehow linked?&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2019 11:51:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-exclude-a-value-from-list-box/m-p/1566887#M743295</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-04-09T11:51:49Z</dc:date>
    </item>
    <item>
      <title>Re: how to exclude a value from list box</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-exclude-a-value-from-list-box/m-p/1566888#M743296</link>
      <description>this was a new requirement.</description>
      <pubDate>Tue, 09 Apr 2019 11:52:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-exclude-a-value-from-list-box/m-p/1566888#M743296</guid>
      <dc:creator>venkat1</dc:creator>
      <dc:date>2019-04-09T11:52:59Z</dc:date>
    </item>
    <item>
      <title>Re: how to exclude a value from list box</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-exclude-a-value-from-list-box/m-p/1566889#M743297</link>
      <description>&lt;P&gt;If this is something new, I would suggest to open a new thread for it. For this thread, did you find what you were looking for? If you did, please close this thread.&lt;/P&gt;&lt;P&gt;Best,&lt;BR /&gt;Sunny&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2019 11:57:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-exclude-a-value-from-list-box/m-p/1566889#M743297</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-04-09T11:57:39Z</dc:date>
    </item>
  </channel>
</rss>

