<?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: Presenting Negetive Values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492508#M1137633</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;U can do both script and design&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Script:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; column1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(column2 &amp;gt; 0, column2) AS column2&lt;/P&gt;&lt;P&gt;From table;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Design&lt;/P&gt;&lt;P&gt;=Sum({&amp;lt;column2 = {"&amp;gt;0"}&amp;gt;}column2)&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, 30 Sep 2013 09:41:15 GMT</pubDate>
    <dc:creator>v_iyyappan</dc:creator>
    <dc:date>2013-09-30T09:41:15Z</dc:date>
    <item>
      <title>Presenting Negetive Values</title>
      <link>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492488#M1137607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi all,&lt;/P&gt;&lt;P&gt;How can I ignore negative values ?&lt;/P&gt;&lt;P&gt;I have a table with next values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table A:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pro1,15&lt;/P&gt;&lt;P&gt;pro2,30&lt;/P&gt;&lt;P&gt;pro3,-40&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I prevent showing the negative record?&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Roee&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Sep 2013 09:30:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492488#M1137607</guid>
      <dc:creator>roee1983</dc:creator>
      <dc:date>2013-09-29T09:30:15Z</dc:date>
    </item>
    <item>
      <title>Re: Presenting Negetive Values</title>
      <link>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492489#M1137608</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;If you want to restrict in script then use the below script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;FROM Table&lt;/P&gt;&lt;P&gt;WHERE Value &amp;gt;= 0;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to do the same in expression then use the below expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Sum({&amp;lt;Value={'&amp;gt;0'}&amp;gt;} Value)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Sep 2013 15:45:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492489#M1137608</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2013-09-29T15:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: Presenting Negetive Values</title>
      <link>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492490#M1137609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Roee&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try using a Chart of Type &lt;EM&gt;Straight Table a&lt;/EM&gt;nd a calculated dimension :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;=if ( Value &amp;gt; 0 , Pro , null() )&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P&gt;See attached qvw.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;Bill&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Sep 2013 21:27:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492490#M1137609</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-09-29T21:27:42Z</dc:date>
    </item>
    <item>
      <title>Re: Presenting Negetive Values</title>
      <link>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492491#M1137610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;sum(if(yourfield&amp;gt;0,yourfield))&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Sep 2013 21:49:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492491#M1137610</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2013-09-29T21:49:26Z</dc:date>
    </item>
    <item>
      <title>Re: Presenting Negetive Values</title>
      <link>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492492#M1137611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want the negative values to be excluded during load, try like :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load Field1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field2&lt;/P&gt;&lt;P&gt;From &amp;lt;&amp;gt; Where Field2&amp;gt;=0;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to restrict only in the fron-end (table), try like:&lt;/P&gt;&lt;P&gt;If(Field2&amp;gt;=0, Field2)&amp;nbsp;&amp;nbsp;&amp;nbsp; , this you could try in list box or in calculated dimension or even in an expression.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Sep 2013 04:44:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492492#M1137611</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2013-09-30T04:44:21Z</dc:date>
    </item>
    <item>
      <title>Re: Presenting Negetive Values</title>
      <link>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492493#M1137612</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;&lt;/P&gt;&lt;P&gt;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load * from tablename where values &amp;gt; 0;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Sep 2013 04:44:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492493#M1137612</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2013-09-30T04:44:46Z</dc:date>
    </item>
    <item>
      <title>Re: Presenting Negetive Values</title>
      <link>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492494#M1137613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can select option Suppress When Values is Null Option in pivot table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Sep 2013 05:05:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492494#M1137613</guid>
      <dc:creator>vikasmahajan</dc:creator>
      <dc:date>2013-09-30T05:05:02Z</dc:date>
    </item>
    <item>
      <title>Re: Presenting Negetive Values</title>
      <link>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492495#M1137614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You want to ignore negative values or you want to show negative values are in postive.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Sep 2013 05:16:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492495#M1137614</guid>
      <dc:creator />
      <dc:date>2013-09-30T05:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: Presenting Negetive Values</title>
      <link>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492496#M1137615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Roee,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can simply remove with if condition&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if Sum(&amp;lt;column A &amp;gt;)&amp;lt;0, Sum(&amp;lt;column A &amp;gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Sep 2013 05:50:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492496#M1137615</guid>
      <dc:creator>qlikpahadi07</dc:creator>
      <dc:date>2013-09-30T05:50:14Z</dc:date>
    </item>
    <item>
      <title>Re: Presenting Negetive Values</title>
      <link>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492497#M1137616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use fabs in the column in your script for eg : fabs(amount)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Sep 2013 06:09:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492497#M1137616</guid>
      <dc:creator>nizamsha</dc:creator>
      <dc:date>2013-09-30T06:09:04Z</dc:date>
    </item>
    <item>
      <title>Re: Presenting Negetive Values</title>
      <link>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492498#M1137617</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;by using filter u prevent negetive values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let suppose customer is ur dimension and sum(sales) is expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in ur dimension tab use below expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(Sales &amp;gt; 0, Company,Null())&lt;/P&gt;&lt;P&gt;then u avoid the negetive values,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Sep 2013 06:33:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492498#M1137617</guid>
      <dc:creator />
      <dc:date>2013-09-30T06:33:06Z</dc:date>
    </item>
    <item>
      <title>Re: Presenting Negetive Values</title>
      <link>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492499#M1137618</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;Use Rangemax(0, &lt;EM&gt;Value&lt;/EM&gt;) for your expression and make sure that Suppress Zero Values is checked. (Replace &lt;EM&gt;Value&lt;/EM&gt; with the correct field name).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Sep 2013 07:49:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492499#M1137618</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2013-09-30T07:49:16Z</dc:date>
    </item>
    <item>
      <title>Re: Presenting Negetive Values</title>
      <link>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492500#M1137619</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;&lt;/P&gt;&lt;P&gt;On which level you need to restrict the negative values?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;on scrip level or in expression level?&lt;/P&gt;&lt;P&gt;&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, 30 Sep 2013 08:11:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492500#M1137619</guid>
      <dc:creator>techvarun</dc:creator>
      <dc:date>2013-09-30T08:11:38Z</dc:date>
    </item>
    <item>
      <title>Re: Presenting Negetive Values</title>
      <link>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492501#M1137620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;by the below script you can restrict it on the script level&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Directory;&lt;/P&gt;&lt;P&gt;LOAD Filed1, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field2&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[..\Table1.xls]&lt;/P&gt;&lt;P&gt;(biff, no labels, table is [Sheet1$])&lt;/P&gt;&lt;P&gt;WHERE(Field2 &amp;gt; '0');&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Sep 2013 08:15:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492501#M1137620</guid>
      <dc:creator>techvarun</dc:creator>
      <dc:date>2013-09-30T08:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: Presenting Negetive Values</title>
      <link>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492502#M1137621</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;do you mean in the load script or in a chart?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Ralf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Sep 2013 08:22:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492502#M1137621</guid>
      <dc:creator>rbecher</dc:creator>
      <dc:date>2013-09-30T08:22:31Z</dc:date>
    </item>
    <item>
      <title>Re: Presenting Negetive Values</title>
      <link>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492503#M1137622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, if you want to do this in the script, it would be like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TableA:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;Description, Value&lt;/P&gt;&lt;P&gt;From ...&lt;/P&gt;&lt;P&gt;where Value &amp;gt; 0;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you'd like to do it directly in your pivot, in your expression write:&lt;/P&gt;&lt;P&gt;If(Value &amp;gt;0, Sum(Value), null())&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;/P&gt;&lt;P&gt;J&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Sep 2013 08:24:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492503#M1137622</guid>
      <dc:creator>jvitantonio</dc:creator>
      <dc:date>2013-09-30T08:24:05Z</dc:date>
    </item>
    <item>
      <title>Re: Presenting Negetive Values</title>
      <link>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492504#M1137624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the expressions tab, add an if statement as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(columnname&amp;lt;0,0,columnname)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Presentations tab, select the specific column and at the bottom enable check box "Suppress Zero-Values"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Sep 2013 09:01:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492504#M1137624</guid>
      <dc:creator />
      <dc:date>2013-09-30T09:01:08Z</dc:date>
    </item>
    <item>
      <title>Re: Presenting Negetive Values</title>
      <link>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492505#M1137626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Do you want this to be done in front-end or back-end???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u have to remove the data from the backend then just add a where condition in the script...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WHERE VALUE &amp;lt;=0;&lt;/P&gt;&lt;P&gt;or if the condition has to be added in front-end then just add an IF condition to the expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SUM(If((VALUE)&amp;gt;=0,VALUE,0))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vivek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Sep 2013 09:10:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492505#M1137626</guid>
      <dc:creator>vivek_niti</dc:creator>
      <dc:date>2013-09-30T09:10:22Z</dc:date>
    </item>
    <item>
      <title>Re: Presenting Negetive Values</title>
      <link>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492506#M1137627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Roee,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use the below expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(sum(Price)&amp;gt;0,sum(Price))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i hope it will help u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kindly find the attachment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mukram.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Sep 2013 09:15:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492506#M1137627</guid>
      <dc:creator>mdmukramali</dc:creator>
      <dc:date>2013-09-30T09:15:51Z</dc:date>
    </item>
    <item>
      <title>Re: Presenting Negetive Values</title>
      <link>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492507#M1137629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Roee,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assuming that this is your&amp;nbsp; data:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table A:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;colA, colB&lt;/P&gt;&lt;P&gt;pro1, 15&lt;/P&gt;&lt;P&gt;pro2, 30,&lt;/P&gt;&lt;P&gt;pro3, -40&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use this in expression :&lt;/P&gt;&lt;P&gt;If([colB]&amp;gt;0,[colB])&lt;BR /&gt;This will hide the negative records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Sep 2013 09:19:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Presenting-Negetive-Values/m-p/492507#M1137629</guid>
      <dc:creator />
      <dc:date>2013-09-30T09:19:57Z</dc:date>
    </item>
  </channel>
</rss>

