<?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: Filter displayed data on table based on Input Box in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Filter-displayed-data-on-table-based-on-Input-Box/m-p/713081#M1084081</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this code&lt;/P&gt;&lt;P&gt;sum( { &amp;lt; Cost ={"&amp;gt;= $(vInput)"} &amp;gt; } Cost)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Be sure that don't give Greater than symbol in input box just give 8000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kumari.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Jun 2014 13:09:28 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-06-19T13:09:28Z</dc:date>
    <item>
      <title>Filter displayed data on table based on Input Box</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-displayed-data-on-table-based-on-Input-Box/m-p/713079#M1084079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;For sure it is simple but I cannot make it.&lt;/P&gt;&lt;P&gt;I want to be able to show only the customers which total cost (the cost per Customer is a sum of costs of many transactions) is greater than (or below) a number that is supplied in an InputBox.&lt;/P&gt;&lt;P&gt;I created a Set analysis expression: &lt;/P&gt;&lt;P&gt;SUM( { &amp;lt; Cost = {"$(vInput)"} &amp;gt; } Cost)&lt;/P&gt;&lt;P&gt;The problem is it evaluates the Cost at row level (which is transaction) and I want the evaluation to be done on Customer level. I.e. if I enter &amp;gt;8000 in the input box I got a sum of all transactions which individually exceeds 8000 rather than only the customers which Total Cost (sum of all transactions) exceeds 8000.&lt;/P&gt;&lt;P&gt;So if a customer has 2 transactions - 5000 and 4000 it wont be displayed as each transaction is below 8000, and it should be as the total is.&lt;/P&gt;&lt;P&gt;I included a file and a picture to be more clear.&lt;/P&gt;&lt;P&gt;I tired SUM and AGGR on Customer but with no success...&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Alex&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2014 12:10:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-displayed-data-on-table-based-on-Input-Box/m-p/713079#M1084079</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-06-19T12:10:28Z</dc:date>
    </item>
    <item>
      <title>Re: Filter displayed data on table based on Input Box</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-displayed-data-on-table-based-on-Input-Box/m-p/713080#M1084080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Try sum( { &amp;lt; Customer = {"=sum(Cost) $(vInput)"} &amp;gt; } Cost)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2014 12:44:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-displayed-data-on-table-based-on-Input-Box/m-p/713080#M1084080</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2014-06-19T12:44:56Z</dc:date>
    </item>
    <item>
      <title>Re: Filter displayed data on table based on Input Box</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-displayed-data-on-table-based-on-Input-Box/m-p/713081#M1084081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this code&lt;/P&gt;&lt;P&gt;sum( { &amp;lt; Cost ={"&amp;gt;= $(vInput)"} &amp;gt; } Cost)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Be sure that don't give Greater than symbol in input box just give 8000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kumari.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2014 13:09:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-displayed-data-on-table-based-on-Input-Box/m-p/713081#M1084081</guid>
      <dc:creator />
      <dc:date>2014-06-19T13:09:28Z</dc:date>
    </item>
    <item>
      <title>Re: Filter displayed data on table based on Input Box</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-displayed-data-on-table-based-on-Input-Box/m-p/713082#M1084082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use: if(sum(Cost)$(vInput),sum(Cost),0)&lt;/P&gt;&lt;P&gt;It works. I just did that in the file you gave and attached it for your reference.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2014 13:33:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-displayed-data-on-table-based-on-Input-Box/m-p/713082#M1084082</guid>
      <dc:creator />
      <dc:date>2014-06-19T13:33:24Z</dc:date>
    </item>
    <item>
      <title>Re: Filter displayed data on table based on Input Box</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-displayed-data-on-table-based-on-Input-Box/m-p/713083#M1084083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you use &amp;gt; in the Input box then try this code&lt;/P&gt;&lt;P&gt;sum( { &amp;lt; Cost ={"$(vInput)"} &amp;gt; } Cost)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2014 13:56:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-displayed-data-on-table-based-on-Input-Box/m-p/713083#M1084083</guid>
      <dc:creator />
      <dc:date>2014-06-19T13:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: Filter displayed data on table based on Input Box</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-displayed-data-on-table-based-on-Input-Box/m-p/713084#M1084084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks to Gysbert, Preethi and all the folks who helped, appreciate it! Especially for the fast replies!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jun 2014 10:34:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-displayed-data-on-table-based-on-Input-Box/m-p/713084#M1084084</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-06-20T10:34:04Z</dc:date>
    </item>
    <item>
      <title>Re: Filter displayed data on table based on Input Box</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-displayed-data-on-table-based-on-Input-Box/m-p/713085#M1084085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ha... no set analysis... just IF, very nice, did not think about that at all, thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jun 2014 11:52:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-displayed-data-on-table-based-on-Input-Box/m-p/713085#M1084085</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-06-20T11:52:14Z</dc:date>
    </item>
  </channel>
</rss>

