<?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: Font color in expression in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246466#M852559</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to paste the color expression in the Expression tab&amp;gt;+ mark and paste it hear &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; and the regular expression in the expression definition box so it actually to different location &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 09 Mar 2017 11:00:32 GMT</pubDate>
    <dc:creator>avinashelite</dc:creator>
    <dc:date>2017-03-09T11:00:32Z</dc:date>
    <item>
      <title>Font color in expression</title>
      <link>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246459#M852552</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;This code works fine (it just make a format so numbers under one percent show a decimal, else show a interger) - but I want the code to change the font color as well - how do I do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=&lt;/P&gt;&lt;P&gt;if ((&lt;/P&gt;&lt;P&gt;SUM({1&amp;lt;Year={$(v_year)}&amp;gt;} DKK))/ (SUM({1&amp;lt;Year={$(v_year)}&amp;gt;} TOTAL DKK))&amp;lt;0.01, NUM((SUM({1&amp;lt;Year={$(v_year)}&amp;gt;} DKK))/ (SUM({1&amp;lt;Year={$(v_year)}&amp;gt;} TOTAL DKK)), '#.##0,0%') ) &amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if ((&lt;/P&gt;&lt;P&gt;SUM({1&amp;lt;Year={$(v_year)}&amp;gt;} DKK))/ (SUM({1&amp;lt;Year={$(v_year)}&amp;gt;} TOTAL DKK))&amp;gt;=0.01, NUM((SUM({1&amp;lt;Year={$(v_year)}&amp;gt;} DKK))/ (SUM({1&amp;lt;Year={$(v_year)}&amp;gt;} TOTAL DKK)), '#.##0%') ) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can I add a font style? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(By the way my code is used in the Ideovision Map extension, but I think its a common issue for all expressions)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246459#M852552</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Font color in expression</title>
      <link>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246460#M852553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm sorry, but is the regular text formatting not available? is this code from your expression?&lt;/P&gt;&lt;P&gt;Can you not create similar if statement in the Text Color formatting expression?&lt;/P&gt;&lt;P&gt;&lt;IMG alt="font.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/155513_font.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex.&lt;/P&gt;&lt;P&gt;=if(&amp;lt;your condition&amp;gt;,White(),Black())&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or multiple if statements if you need more of a gradient&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;lt;your condition&amp;gt;&lt;/SPAN&gt;,White(),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;lt;your condition&amp;gt;&lt;/SPAN&gt;, rgb(34,255,34), &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;lt;your condition&amp;gt;&lt;/SPAN&gt;, rgb(224, 224, 224), &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Mar 2017 17:27:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246460#M852553</guid>
      <dc:creator>wojciechd</dc:creator>
      <dc:date>2017-03-07T17:27:57Z</dc:date>
    </item>
    <item>
      <title>Re: Font color in expression</title>
      <link>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246461#M852554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks - but in the extension idevio I can only work in the webview and there is no access to the regular text formatting thats why I want to do in my expression &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; So unfortunately I cant use your suggestion, but thanks anyway for trying &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Mar 2017 21:30:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246461#M852554</guid>
      <dc:creator />
      <dc:date>2017-03-07T21:30:53Z</dc:date>
    </item>
    <item>
      <title>Re: Font color in expression</title>
      <link>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246462#M852555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think in the extension you need have the code to handle the font size I guess ..Since you have the extension add the code to handle the font color in the extension that way you will have more option&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2017 05:52:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246462#M852555</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2017-03-08T05:52:32Z</dc:date>
    </item>
    <item>
      <title>Re: Font color in expression</title>
      <link>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246463#M852556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;well its not a general change - I want to control the font color for the label by an IF-statement. I know I can't use NUM-function, because this only format the numbers. Therefore: I can't find a function to handle font color when I want to write my IF statement in the expression in the label fx-box. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 10:15:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246463#M852556</guid>
      <dc:creator />
      <dc:date>2017-03-09T10:15:41Z</dc:date>
    </item>
    <item>
      <title>Re: Font color in expression</title>
      <link>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246464#M852557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So your label is a combination of text and num? then we don't have a way to handle that ..could give an example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if its only the numbers then something like this would work &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(exp&amp;gt;1.0 , RGB(245,36,65), if(exp=100,RGB(),RGB()))&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 10:32:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246464#M852557</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2017-03-09T10:32:01Z</dc:date>
    </item>
    <item>
      <title>Re: Font color in expression</title>
      <link>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246465#M852558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks - great feedback - now its close to success, but no cigar yet &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the labels are not longer numbers but a textstring: RGB(245,36,65) ... and the textstring code changes along with the if-statement. Thats ok, but code dont execute the RGB to a color, so I read my label in the color ... do you have any suggestion to get through that hurdle? Thank you so much in advance &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My wish is that I can change the label color at the area white dark background color at the maps below &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;(and it changes over time, that why I want to control it with the IF-statement) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="udklip1.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/155739_udklip1.JPG" style="height: auto;" /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 10:51:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246465#M852558</guid>
      <dc:creator />
      <dc:date>2017-03-09T10:51:59Z</dc:date>
    </item>
    <item>
      <title>Re: Font color in expression</title>
      <link>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246466#M852559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to paste the color expression in the Expression tab&amp;gt;+ mark and paste it hear &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; and the regular expression in the expression definition box so it actually to different location &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 11:00:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246466#M852559</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2017-03-09T11:00:32Z</dc:date>
    </item>
    <item>
      <title>Re: Font color in expression</title>
      <link>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246467#M852561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I really appreciate your help - but Im not sure what you mean. I use the expression box at the [LABEL] section:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Udklip2.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/155740_Udklip2.JPG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;And the simple test of color &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if((SUM({1&amp;lt;Year={$(v_year)},Fou_geo={'DK'}&amp;gt;} DKK))/ (SUM({1&amp;lt;Year={$(v_year)},Fou_geo={'DK'}&amp;gt;} TOTAL DKK))&amp;lt;0.01, RGB(245,36,65), RGB(245,245,245))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This gives the picture in shown in my recent post ... Do you think Im writing the code at the wrong place?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 11:12:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246467#M852561</guid>
      <dc:creator />
      <dc:date>2017-03-09T11:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: Font color in expression</title>
      <link>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246468#M852564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is the palace to define your label name &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; their will be an option to&lt;STRONG&gt; choose the Label font color , their you need paste the RGB() if condition expression to pick the color &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you got the answer &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 11:38:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246468#M852564</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2017-03-09T11:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: Font color in expression</title>
      <link>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246469#M852566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks - then I dont think there is a solution. The only color option I have is the background color and that works fine - I cant find a place to change label color. I think I make a textbox and order it to the front of the map instead. Thank you very much for your time &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 12:52:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246469#M852566</guid>
      <dc:creator />
      <dc:date>2017-03-09T12:52:51Z</dc:date>
    </item>
    <item>
      <title>Re: Font color in expression</title>
      <link>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246470#M852568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Since it's an extension we need to add the logic code in the extension to change the Label color ..if it was a QV default object it would come by default . Get in touch with your extension developer and ask to add this part also &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 12:57:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246470#M852568</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2017-03-09T12:57:38Z</dc:date>
    </item>
    <item>
      <title>Re: Font color in expression</title>
      <link>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246471#M852570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am new to extension oriented&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;lt;Label Id = "LabelID"&amp;gt; Welcome &amp;lt;/Label&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;lt;Style&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;#LabelID &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Color : Red;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Font-Weight : Bold;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;lt;/Stlye&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or else simple do this with in the tag if you feel bad in Styles&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;&amp;lt;Label Style = "Color : Red; Font-Weight : Bold"&amp;gt; Welcome &amp;lt;/Label&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 13:02:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246471#M852570</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-03-09T13:02:33Z</dc:date>
    </item>
    <item>
      <title>Re: Font color in expression</title>
      <link>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246472#M852572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;He want the labels to change as per the expression &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; the above gives the constant color for him rite ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 14:04:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246472#M852572</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2017-03-09T14:04:56Z</dc:date>
    </item>
    <item>
      <title>Re: Font color in expression</title>
      <link>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246473#M852574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It would be easy enough to add this into the script for the extension, but guessing that is down to the developer...&lt;/P&gt;&lt;P&gt;Is this a paid extension I assume?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 14:06:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246473#M852574</guid>
      <dc:creator>adamdavi3s</dc:creator>
      <dc:date>2017-03-09T14:06:36Z</dc:date>
    </item>
    <item>
      <title>Re: Font color in expression</title>
      <link>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246474#M852576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes its a paided extension: Ideovio which is a very nice map for QV. I'll ask them and be back with the feedback here &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 14:47:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Font-color-in-expression/m-p/1246474#M852576</guid>
      <dc:creator />
      <dc:date>2017-03-09T14:47:01Z</dc:date>
    </item>
  </channel>
</rss>

