<?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: Change negative to () help.!!! in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Change-negative-to-help/m-p/571406#M685484</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you could use FABS Function around the Expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or change the number format to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'#.##0,0;(#.##0,0)'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Jan 2014 10:12:42 GMT</pubDate>
    <dc:creator>rustyfishbones</dc:creator>
    <dc:date>2014-01-27T10:12:42Z</dc:date>
    <item>
      <title>Change negative to () help.!!!</title>
      <link>https://community.qlik.com/t5/QlikView/Change-negative-to-help/m-p/571405#M685483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to covert all negative numbers in my pivot table to () for example &lt;SPAN style="color: #ff0000;"&gt;-8.3 &lt;/SPAN&gt; should appear as &lt;SPAN style="color: #00ff00;"&gt;()8.3&lt;/SPAN&gt;. Any idea how to do it.&lt;/P&gt;&lt;P&gt;At present my number format is &lt;SPAN style="color: #ff9900;"&gt;#.##0,0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance.!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 10:10:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-negative-to-help/m-p/571405#M685483</guid>
      <dc:creator>amit_saini</dc:creator>
      <dc:date>2014-01-27T10:10:24Z</dc:date>
    </item>
    <item>
      <title>Re: Change negative to () help.!!!</title>
      <link>https://community.qlik.com/t5/QlikView/Change-negative-to-help/m-p/571406#M685484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you could use FABS Function around the Expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or change the number format to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'#.##0,0;(#.##0,0)'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 10:12:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-negative-to-help/m-p/571406#M685484</guid>
      <dc:creator>rustyfishbones</dc:creator>
      <dc:date>2014-01-27T10:12:42Z</dc:date>
    </item>
    <item>
      <title>Re: Change negative to () help.!!!</title>
      <link>https://community.qlik.com/t5/QlikView/Change-negative-to-help/m-p/571407#M685485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Try using&lt;/P&gt;&lt;P&gt;if(Sum(exp)&amp;lt;0, '()'&amp;amp;fabs(sum(exp)), sum(exp))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;-Shruti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 10:20:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-negative-to-help/m-p/571407#M685485</guid>
      <dc:creator />
      <dc:date>2014-01-27T10:20:33Z</dc:date>
    </item>
    <item>
      <title>Re: Change negative to () help.!!!</title>
      <link>https://community.qlik.com/t5/QlikView/Change-negative-to-help/m-p/571408#M685486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use below:&lt;/P&gt;&lt;P&gt;Replace(FieldName,'-','()')&lt;/P&gt;&lt;P&gt;for simple presentation change. It won't affect total sums.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 10:20:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-negative-to-help/m-p/571408#M685486</guid>
      <dc:creator>AbhijitBansode</dc:creator>
      <dc:date>2014-01-27T10:20:52Z</dc:date>
    </item>
    <item>
      <title>Re: Change negative to () help.!!!</title>
      <link>https://community.qlik.com/t5/QlikView/Change-negative-to-help/m-p/571409#M685487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As Alan said, modify your number format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;expression for &amp;gt;0 number ; (semi colon) expression for &amp;lt; 0 numbers&lt;/P&gt;&lt;P&gt;so you will have:&lt;/P&gt;&lt;P&gt;num(your exp, '#,##0.0;(#,##0)', '.', ',')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fabrice&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 10:22:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-negative-to-help/m-p/571409#M685487</guid>
      <dc:creator />
      <dc:date>2014-01-27T10:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: Change negative to () help.!!!</title>
      <link>https://community.qlik.com/t5/QlikView/Change-negative-to-help/m-p/571410#M685488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;try to use fabs() function&lt;/P&gt;&lt;P&gt;example-&lt;/P&gt;&lt;P&gt;='()' &amp;amp; fabs(-8.3)&lt;/P&gt;&lt;P&gt;then output is&lt;/P&gt;&lt;P&gt;()8.3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 10:25:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-negative-to-help/m-p/571410#M685488</guid>
      <dc:creator />
      <dc:date>2014-01-27T10:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: Change negative to () help.!!!</title>
      <link>https://community.qlik.com/t5/QlikView/Change-negative-to-help/m-p/571411#M685489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Type the number format&amp;nbsp; like below&lt;/P&gt;&lt;P&gt;&lt;IMG alt="negativeformat.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/52137_negativeformat.png" style="width: 620px; height: 290px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 10:32:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-negative-to-help/m-p/571411#M685489</guid>
      <dc:creator>sudeepkm</dc:creator>
      <dc:date>2014-01-27T10:32:22Z</dc:date>
    </item>
    <item>
      <title>Re: Change negative to () help.!!!</title>
      <link>https://community.qlik.com/t5/QlikView/Change-negative-to-help/m-p/571412#M685490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why don't you use&lt;/P&gt;&lt;P&gt;=if(Sum(Sales)&amp;lt;0,'('&amp;amp;Sum(Sales)&amp;amp;')',Sum(Sales)).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Naresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 10:35:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-negative-to-help/m-p/571412#M685490</guid>
      <dc:creator>NareshGuntur</dc:creator>
      <dc:date>2014-01-27T10:35:31Z</dc:date>
    </item>
    <item>
      <title>Re: Change negative to () help.!!!</title>
      <link>https://community.qlik.com/t5/QlikView/Change-negative-to-help/m-p/571413#M685491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Alan it worked fine .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 10:36:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-negative-to-help/m-p/571413#M685491</guid>
      <dc:creator>amit_saini</dc:creator>
      <dc:date>2014-01-27T10:36:42Z</dc:date>
    </item>
    <item>
      <title>Re: Change negative to () help.!!!</title>
      <link>https://community.qlik.com/t5/QlikView/Change-negative-to-help/m-p/571414#M685492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please mark the answer as Correct and also any other helpful answers, it will help other users find the answers they are looking for too&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 10:41:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-negative-to-help/m-p/571414#M685492</guid>
      <dc:creator>rustyfishbones</dc:creator>
      <dc:date>2014-01-27T10:41:36Z</dc:date>
    </item>
  </channel>
</rss>

