<?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 Font color and style for Expression Column value in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Font-color-and-style-for-Expression-Column-value/m-p/816763#M1033124</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have sum(Amounts) column as a Expression. My requirement is,&lt;/P&gt;&lt;P&gt;if sum(Amounts) has negative value , that negative value should be Red Color and that negative value in brackets like ( ).&lt;/P&gt;&lt;P style="padding: 0px; min-height: 8pt;"&gt;&lt;/P&gt;&lt;P&gt;How can i achieve this, could you please tell me Set expression and process&lt;/P&gt;&lt;P style="padding: 0px; min-height: 8pt;"&gt;&lt;/P&gt;&lt;P style="padding: 0px; min-height: 8pt;"&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;MLNR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Jan 2015 04:59:19 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-01-20T04:59:19Z</dc:date>
    <item>
      <title>Font color and style for Expression Column value</title>
      <link>https://community.qlik.com/t5/QlikView/Font-color-and-style-for-Expression-Column-value/m-p/816763#M1033124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have sum(Amounts) column as a Expression. My requirement is,&lt;/P&gt;&lt;P&gt;if sum(Amounts) has negative value , that negative value should be Red Color and that negative value in brackets like ( ).&lt;/P&gt;&lt;P style="padding: 0px; min-height: 8pt;"&gt;&lt;/P&gt;&lt;P&gt;How can i achieve this, could you please tell me Set expression and process&lt;/P&gt;&lt;P style="padding: 0px; min-height: 8pt;"&gt;&lt;/P&gt;&lt;P style="padding: 0px; min-height: 8pt;"&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;MLNR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2015 04:59:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Font-color-and-style-for-Expression-Column-value/m-p/816763#M1033124</guid>
      <dc:creator />
      <dc:date>2015-01-20T04:59:19Z</dc:date>
    </item>
    <item>
      <title>Re: Font color and style for Expression Column value</title>
      <link>https://community.qlik.com/t5/QlikView/Font-color-and-style-for-Expression-Column-value/m-p/816764#M1033125</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 this as expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Num(Sum(Sales), '#,##0.00;(#,##0.00)')&lt;/P&gt;&lt;P&gt;and in number table select Expression Default option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and for background color expand + sign of the expression and click on Background and give below expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=If(Sum(Sales) &amp;gt; 0, RGB(255, 0, 0))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&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>Tue, 20 Jan 2015 05:35:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Font-color-and-style-for-Expression-Column-value/m-p/816764#M1033125</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-01-20T05:35:25Z</dc:date>
    </item>
    <item>
      <title>Re: Font color and style for Expression Column value</title>
      <link>https://community.qlik.com/t5/QlikView/Font-color-and-style-for-Expression-Column-value/m-p/816765#M1033126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this &lt;/P&gt;&lt;P&gt;if(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;sum(Amounts)&lt;/SPAN&gt; &amp;gt;=0, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;sum(Amounts)&lt;/SPAN&gt;, '(' &amp;amp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;sum(Amounts)&lt;/SPAN&gt; &amp;amp;')' )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expend expressions and write the following expression "Background Color" section for background&lt;/P&gt;&lt;P&gt;if(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;sum(Amounts)&lt;/SPAN&gt; &amp;lt;0, red(), black())&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2015 05:36:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Font-color-and-style-for-Expression-Column-value/m-p/816765#M1033126</guid>
      <dc:creator>senpradip007</dc:creator>
      <dc:date>2015-01-20T05:36:57Z</dc:date>
    </item>
    <item>
      <title>Re: Font color and style for Expression Column value</title>
      <link>https://community.qlik.com/t5/QlikView/Font-color-and-style-for-Expression-Column-value/m-p/816766#M1033127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jagan,&lt;/P&gt;&lt;P&gt;Thi expression is ok. But I want , negative number color is in red and negative number should be in brackets like ( ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;MLNR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2015 05:53:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Font-color-and-style-for-Expression-Column-value/m-p/816766#M1033127</guid>
      <dc:creator />
      <dc:date>2015-01-20T05:53:02Z</dc:date>
    </item>
    <item>
      <title>Re: Font color and style for Expression Column value</title>
      <link>https://community.qlik.com/t5/QlikView/Font-color-and-style-for-Expression-Column-value/m-p/816767#M1033128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pradip,&lt;/P&gt;&lt;P&gt;Thi expression is ok. But I want , negative number color is in red and negative number should be in brackets like ( ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;MLNR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2015 05:53:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Font-color-and-style-for-Expression-Column-value/m-p/816767#M1033128</guid>
      <dc:creator />
      <dc:date>2015-01-20T05:53:31Z</dc:date>
    </item>
    <item>
      <title>Re: Font color and style for Expression Column value</title>
      <link>https://community.qlik.com/t5/QlikView/Font-color-and-style-for-Expression-Column-value/m-p/816768#M1033129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Make use Expression as Num(sum(Amount),'#,##.#;(#,##.#) ; '))&lt;/P&gt;&lt;P&gt;and then go to + sign background expression&lt;/P&gt;&lt;P&gt;IF(Sign(Amount)='-1',Red())&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2015 06:32:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Font-color-and-style-for-Expression-Column-value/m-p/816768#M1033129</guid>
      <dc:creator>sunilkumarqv</dc:creator>
      <dc:date>2015-01-20T06:32:39Z</dc:date>
    </item>
    <item>
      <title>Re: Font color and style for Expression Column value</title>
      <link>https://community.qlik.com/t5/QlikView/Font-color-and-style-for-Expression-Column-value/m-p/816769#M1033130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2015 06:50:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Font-color-and-style-for-Expression-Column-value/m-p/816769#M1033130</guid>
      <dc:creator>senpradip007</dc:creator>
      <dc:date>2015-01-20T06:50:02Z</dc:date>
    </item>
    <item>
      <title>Re: Font color and style for Expression Column value</title>
      <link>https://community.qlik.com/t5/QlikView/Font-color-and-style-for-Expression-Column-value/m-p/816770#M1033131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;For coloring try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;For Text color expand + sign of the expression and click on Text Color and give below expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;=If(Sum(Sales) &amp;gt; 0, RGB(255, 0, 0))&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Regards,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2015 06:55:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Font-color-and-style-for-Expression-Column-value/m-p/816770#M1033131</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-01-20T06:55:21Z</dc:date>
    </item>
    <item>
      <title>Re: Font color and style for Expression Column value</title>
      <link>https://community.qlik.com/t5/QlikView/Font-color-and-style-for-Expression-Column-value/m-p/816771#M1033132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have a look on the attachment. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2015 07:17:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Font-color-and-style-for-Expression-Column-value/m-p/816771#M1033132</guid>
      <dc:creator>senpradip007</dc:creator>
      <dc:date>2015-01-20T07:17:19Z</dc:date>
    </item>
    <item>
      <title>Re: Font color and style for Expression Column value</title>
      <link>https://community.qlik.com/t5/QlikView/Font-color-and-style-for-Expression-Column-value/m-p/816772#M1033133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Narayana ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pradip Sen suggested is working &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2015 07:17:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Font-color-and-style-for-Expression-Column-value/m-p/816772#M1033133</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-01-20T07:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: Font color and style for Expression Column value</title>
      <link>https://community.qlik.com/t5/QlikView/Font-color-and-style-for-Expression-Column-value/m-p/816773#M1033134</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 link, It may helps&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/143478"&gt;Need to convert Negative values to positive values with[ ] and red font&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Krishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2015 07:27:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Font-color-and-style-for-Expression-Column-value/m-p/816773#M1033134</guid>
      <dc:creator>krishna20</dc:creator>
      <dc:date>2015-01-20T07:27:28Z</dc:date>
    </item>
    <item>
      <title>Re: Font color and style for Expression Column value</title>
      <link>https://community.qlik.com/t5/QlikView/Font-color-and-style-for-Expression-Column-value/m-p/816774#M1033135</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;Goto properties -&amp;gt; Number Tab-&amp;gt; Select your Expression-&amp;gt; Select Integer -&amp;gt; In Format Pattern replace this #,##0;(#,##0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Goto Expression Tab-&amp;gt; Select your Expression -&amp;gt; Expand it by + mark. Select Text Format.Then write like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(sum(Sales)&amp;gt;=0,bllack(),Red())&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Krishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2015 07:31:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Font-color-and-style-for-Expression-Column-value/m-p/816774#M1033135</guid>
      <dc:creator>krishna20</dc:creator>
      <dc:date>2015-01-20T07:31:42Z</dc:date>
    </item>
    <item>
      <title>Re: Font color and style for Expression Column value</title>
      <link>https://community.qlik.com/t5/QlikView/Font-color-and-style-for-Expression-Column-value/m-p/816775#M1033136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should close the discussion, if reached the goal, by choosing one correct or helpful answer for others to learn.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2015 04:16:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Font-color-and-style-for-Expression-Column-value/m-p/816775#M1033136</guid>
      <dc:creator>senpradip007</dc:creator>
      <dc:date>2015-01-21T04:16:40Z</dc:date>
    </item>
    <item>
      <title>Re: Font color and style for Expression Column value</title>
      <link>https://community.qlik.com/t5/QlikView/Font-color-and-style-for-Expression-Column-value/m-p/816776#M1033137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can also set flag for it by using this formula&lt;/P&gt;&lt;P&gt;If(Sum(Sales) &amp;lt;= 0,'qmem://&amp;lt;bundled&amp;gt;/BuiltIn/arrow_s_r.png','qmem://&amp;lt;bundled&amp;gt;/BuiltIn/arrow_n_g.png')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And select the expression and choose image and select keep aspect&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2015 05:32:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Font-color-and-style-for-Expression-Column-value/m-p/816776#M1033137</guid>
      <dc:creator>gautik92</dc:creator>
      <dc:date>2015-01-21T05:32:08Z</dc:date>
    </item>
  </channel>
</rss>

