<?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: Listbox filtered in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Listbox-filtered/m-p/1361173#M417170</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure if the formula works at all. I want to filter the suppliers in the list box, so that only, for example, 20% of the companies with the biggest volume are displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope you can help me to solve this problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 May 2017 07:47:07 GMT</pubDate>
    <dc:creator />
    <dc:date>2017-05-18T07:47:07Z</dc:date>
    <item>
      <title>Listbox filtered</title>
      <link>https://community.qlik.com/t5/QlikView/Listbox-filtered/m-p/1361170#M417167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new to QlikView and I need a listbox which only displays values which fulfill a condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The listbox should only display those suppliers of the field 'Supplier' which pass over a threshold.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The threshold should be a percentage (chosen with a scroll bar) of the sum of the total volume of a fiscal year.&lt;/P&gt;&lt;P&gt;I have the fields Supplier, Volume, Fiscal Year.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If tried this expression as listbox field but it is not working:&lt;/P&gt;&lt;P&gt;(Variable is the variable connected to the scroll bar to choose the percentage from 0% - 100%)&lt;/P&gt;&lt;P&gt;= if( aggr(&amp;nbsp; Volume , Supplier ) &amp;gt;= Variable * Sum(Volume) , Supplier )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I solve this problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best wishes&lt;/P&gt;&lt;P&gt;Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 May 2017 11:54:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Listbox-filtered/m-p/1361170#M417167</guid>
      <dc:creator />
      <dc:date>2017-05-17T11:54:20Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox filtered</title>
      <link>https://community.qlik.com/t5/QlikView/Listbox-filtered/m-p/1361171#M417168</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;try this,&lt;/P&gt;&lt;P&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;= if( aggr(&amp;nbsp; Volume , Supplier ) &amp;gt;= $(Variable) * Sum(Volume) , Supplier )&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;if not working please post your sample qvw, &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 May 2017 12:30:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Listbox-filtered/m-p/1361171#M417168</guid>
      <dc:creator>pipuindia99</dc:creator>
      <dc:date>2017-05-17T12:30:11Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox filtered</title>
      <link>https://community.qlik.com/t5/QlikView/Listbox-filtered/m-p/1361172#M417169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;no it still does not work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is my loading script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET ThousandSep='.';&lt;/P&gt;&lt;P&gt;SET DecimalSep=',';&lt;/P&gt;&lt;P&gt;SET MoneyThousandSep='.';&lt;/P&gt;&lt;P&gt;SET MoneyDecimalSep=',';&lt;/P&gt;&lt;P&gt;SET MoneyFormat='#.##0,00 €;-#.##0,00 €';&lt;/P&gt;&lt;P&gt;SET TimeFormat='hh:mm:ss';&lt;/P&gt;&lt;P&gt;SET DateFormat='DD.MM.YYYY';&lt;/P&gt;&lt;P&gt;SET TimestampFormat='DD.MM.YYYY hh:mm:ss[.fff]';&lt;/P&gt;&lt;P&gt;SET FirstWeekDay=0;&lt;/P&gt;&lt;P&gt;SET BrokenWeeks=0;&lt;/P&gt;&lt;P&gt;SET ReferenceDay=4;&lt;/P&gt;&lt;P&gt;SET FirstMonthOfYear=1;&lt;/P&gt;&lt;P&gt;SET CollationLocale='de-DE';&lt;/P&gt;&lt;P&gt;SET MonthNames='Jan;Feb;Mrz;Apr;Mai;Jun;Jul;Aug;Sep;Okt;Nov;Dez';&lt;/P&gt;&lt;P&gt;SET LongMonthNames='Januar;Februar;März;April;Mai;Juni;Juli;August;September;Oktober;November;Dezember';&lt;/P&gt;&lt;P&gt;SET DayNames='Mo;Di;Mi;Do;Fr;Sa;So';&lt;/P&gt;&lt;P&gt;SET LongDayNames='Montag;Dienstag;Mittwoch;Donnerstag;Freitag;Samstag;Sonntag';&lt;/P&gt;&lt;P&gt;LOAD [Fiscal Year (FY)] as [Fiscal Year],&amp;nbsp; [Supplier Number (IvS)] as Supplier, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EUR as Volume&lt;/P&gt;&lt;P&gt;FROM &lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(txt, utf8, embedded labels, delimiter is ';', msq, header is 1 lines);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/163849_pastedImage_1.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;With the percentage scroll-bar I want to choose the companies for example that make up 20% of the total Volume in Fiscal Year 2016.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the expression in the listbox:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-2" height="279" src="https://community.qlik.com/legacyfs/online/163857_pastedImage_3.png" style="width: 660.229px; height: 279px;" width="660" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is configuration in the scroll-bar:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-3" src="https://community.qlik.com/legacyfs/online/163858_pastedImage_4.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for helping me!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 May 2017 07:06:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Listbox-filtered/m-p/1361172#M417169</guid>
      <dc:creator />
      <dc:date>2017-05-18T07:06:53Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox filtered</title>
      <link>https://community.qlik.com/t5/QlikView/Listbox-filtered/m-p/1361173#M417170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure if the formula works at all. I want to filter the suppliers in the list box, so that only, for example, 20% of the companies with the biggest volume are displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope you can help me to solve this problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 May 2017 07:47:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Listbox-filtered/m-p/1361173#M417170</guid>
      <dc:creator />
      <dc:date>2017-05-18T07:47:07Z</dc:date>
    </item>
  </channel>
</rss>

