<?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 How to filter in script level? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-filter-in-script-level/m-p/728233#M260991</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;i have employess expenses data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;empid ,Amount,employee name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but some each employee has many expenses first i want some of all the expenses and after that i want &amp;gt;10000 expenses&lt;/P&gt;&lt;P&gt;now i want to display ony &amp;gt;10000 expenses&lt;/P&gt;&lt;P&gt;how implement this is in script level not in desgin level&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Sep 2014 06:38:56 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-09-08T06:38:56Z</dc:date>
    <item>
      <title>How to filter in script level?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-in-script-level/m-p/728233#M260991</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;i have employess expenses data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;empid ,Amount,employee name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but some each employee has many expenses first i want some of all the expenses and after that i want &amp;gt;10000 expenses&lt;/P&gt;&lt;P&gt;now i want to display ony &amp;gt;10000 expenses&lt;/P&gt;&lt;P&gt;how implement this is in script level not in desgin level&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Sep 2014 06:38:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-in-script-level/m-p/728233#M260991</guid>
      <dc:creator />
      <dc:date>2014-09-08T06:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter in script level?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-in-script-level/m-p/728234#M260992</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 like this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;only(empid) as empid,&lt;/P&gt;&lt;P&gt;Sum(Amount) as Expenses,&lt;/P&gt;&lt;P&gt;Employee name&lt;/P&gt;&lt;P&gt;from tableName&lt;/P&gt;&lt;P&gt;where Sum(Amount)&amp;gt;10000&lt;/P&gt;&lt;P&gt;Group by Empoyee name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Sep 2014 06:48:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-in-script-level/m-p/728234#M260992</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2014-09-08T06:48:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter in script level?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-in-script-level/m-p/728235#M260993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can try like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;empid ,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Amount,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [employee name]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;From &amp;lt;&amp;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;"&gt;where Amount&amp;gt;10000;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Sep 2014 06:49:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-in-script-level/m-p/728235#M260993</guid>
      <dc:creator>senpradip007</dc:creator>
      <dc:date>2014-09-08T06:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter in script level?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-in-script-level/m-p/728236#M260994</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;for applying filter into Script Level you can use Where Clause&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like first Load all the data &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All_Data :&lt;/P&gt;&lt;P&gt;Load * &lt;/P&gt;&lt;P&gt;From Source_Table;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then use Resident Load &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Filterd_data :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load * &lt;/P&gt;&lt;P&gt;Resident All_Data&lt;/P&gt;&lt;P&gt;where &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;expenses&amp;gt;10000;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&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;"&gt;Then Drop the All_Data Table :&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Drop Table All_Data;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&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;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Vivek&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Sep 2014 06:56:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-in-script-level/m-p/728236#M260994</guid>
      <dc:creator />
      <dc:date>2014-09-08T06:56:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter in script level?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-in-script-level/m-p/728237#M260995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use following script&amp;gt;&amp;gt;&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TEMP:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;empid as empid,&lt;/P&gt;&lt;P&gt;Sum(Amount) as Expenses,&lt;/P&gt;&lt;P&gt;[Employee name]&lt;/P&gt;&lt;P&gt;from &amp;lt;table name&amp;gt;&lt;/P&gt;&lt;P&gt;Group by empid,[Employee name];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;Final:&lt;/P&gt;&lt;P&gt;LOAD * Resident TEMP&lt;/P&gt;&lt;P&gt;where Expenses&amp;gt;10000;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Sep 2014 06:57:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-in-script-level/m-p/728237#M260995</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-08T06:57:49Z</dc:date>
    </item>
  </channel>
</rss>

