<?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 Change Font Color in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Change-Font-Color/m-p/98973#M15826</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 a chart where I'm projecting available hours of resources for the future.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It looks like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.JPG" class="jive-image image-1" height="116" src="https://community.qlik.com/legacyfs/online/206691_Capture.JPG" style="height: 116.107px; width: 847px;" width="847" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the week of 09/30, the availability increases by 2 hours. So I want the text color to change to black.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the availability changes again, I want the text color to change black to red.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have written simple expressions for background and text color of the chart-expressions (shown below) but I'm not able to include the functionality of changing colors with changing availability.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;Background:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;=IF ($(vRemainingHours)&amp;lt;0,RGB(0,0,0),&lt;/P&gt;&lt;P&gt;IF(($(vRemainingHours)&amp;gt;=1 and $(vRemainingHours)&amp;lt;=6) ,RGB(177,106,103),&lt;/P&gt;&lt;P&gt;IF(($(vRemainingHours)&amp;gt;=6.1 and $(vRemainingHours)&amp;lt;=13),RGB(244,156,89),&lt;/P&gt;&lt;P&gt;IF(($(vRemainingHours)&amp;gt;=13.1 and $(vRemainingHours)&amp;lt;=20),RGB(255,217,99 ),&lt;/P&gt;&lt;P&gt;IF(($(vRemainingHours)&amp;gt;=20.1 and $(vRemainingHours)&amp;lt;=27),RGB(206,247,129),&lt;/P&gt;&lt;P&gt;IF(($(vRemainingHours)&amp;gt;=27.1 and $(vRemainingHours)&amp;lt;=35),RGB(79,170,115),&lt;/P&gt;&lt;P&gt;IF(($(vRemainingHours)&amp;gt;=35.1 and $(vRemainingHours)&amp;lt;=42),RGB(179,224,245),&lt;/P&gt;&lt;P&gt;IF(($(vRemainingHours)&amp;gt;=42.1 and $(vRemainingHours)&amp;lt;=49),RGB(154,155,156),&lt;/P&gt;&lt;P&gt;IF($(vRemainingHours)&amp;gt;=49.1 ,RGB(0,0,0)&lt;/P&gt;&lt;P&gt;)))))))))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;Text:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;=IF ($(vRemainingHours)&amp;lt;0,RGB(255,0,0),&lt;/P&gt;&lt;P&gt;IF(($(vRemainingHours)&amp;gt;=1 and $(vRemainingHours)&amp;lt;=6) ,RGB(255,255,255),&lt;/P&gt;&lt;P&gt;IF(($(vRemainingHours)&amp;gt;=6.1 and $(vRemainingHours)&amp;lt;=13),RGB(0,0,0),&lt;/P&gt;&lt;P&gt;IF(($(vRemainingHours)&amp;gt;=13.1 and $(vRemainingHours)&amp;lt;=20),RGB(0,0,0),&lt;/P&gt;&lt;P&gt;IF(($(vRemainingHours)&amp;gt;=20.1 and $(vRemainingHours)&amp;lt;=27),RGB(0,0,0),&lt;/P&gt;&lt;P&gt;IF(($(vRemainingHours)&amp;gt;=27.1 and $(vRemainingHours)&amp;lt;=35),RGB(255,255,255),&lt;/P&gt;&lt;P&gt;IF(($(vRemainingHours)&amp;gt;=35.1 and $(vRemainingHours)&amp;lt;=42),RGB(0,0,0),&lt;/P&gt;&lt;P&gt;IF(($(vRemainingHours)&amp;gt;=42.1 and $(vRemainingHours)&amp;lt;=49),RGB(255,255,255),&lt;/P&gt;&lt;P&gt;IF($(vRemainingHours)&amp;gt;=49.1 ,RGB(255,255,255))))))))))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;$(vRemainingHours) is my chart-expression.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;The condition to change the text color should be added in the text color-expression.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Also, is there any other/better way to depict availability change in the above chart so that it's more visually attention-catching?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Any help would be appreciated!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;EM&gt;&lt;STRONG&gt;YASH&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Jul 2018 06:59:04 GMT</pubDate>
    <dc:creator>yashcena</dc:creator>
    <dc:date>2018-07-02T06:59:04Z</dc:date>
    <item>
      <title>Change Font Color</title>
      <link>https://community.qlik.com/t5/QlikView/Change-Font-Color/m-p/98973#M15826</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 a chart where I'm projecting available hours of resources for the future.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It looks like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.JPG" class="jive-image image-1" height="116" src="https://community.qlik.com/legacyfs/online/206691_Capture.JPG" style="height: 116.107px; width: 847px;" width="847" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the week of 09/30, the availability increases by 2 hours. So I want the text color to change to black.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the availability changes again, I want the text color to change black to red.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have written simple expressions for background and text color of the chart-expressions (shown below) but I'm not able to include the functionality of changing colors with changing availability.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;Background:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;=IF ($(vRemainingHours)&amp;lt;0,RGB(0,0,0),&lt;/P&gt;&lt;P&gt;IF(($(vRemainingHours)&amp;gt;=1 and $(vRemainingHours)&amp;lt;=6) ,RGB(177,106,103),&lt;/P&gt;&lt;P&gt;IF(($(vRemainingHours)&amp;gt;=6.1 and $(vRemainingHours)&amp;lt;=13),RGB(244,156,89),&lt;/P&gt;&lt;P&gt;IF(($(vRemainingHours)&amp;gt;=13.1 and $(vRemainingHours)&amp;lt;=20),RGB(255,217,99 ),&lt;/P&gt;&lt;P&gt;IF(($(vRemainingHours)&amp;gt;=20.1 and $(vRemainingHours)&amp;lt;=27),RGB(206,247,129),&lt;/P&gt;&lt;P&gt;IF(($(vRemainingHours)&amp;gt;=27.1 and $(vRemainingHours)&amp;lt;=35),RGB(79,170,115),&lt;/P&gt;&lt;P&gt;IF(($(vRemainingHours)&amp;gt;=35.1 and $(vRemainingHours)&amp;lt;=42),RGB(179,224,245),&lt;/P&gt;&lt;P&gt;IF(($(vRemainingHours)&amp;gt;=42.1 and $(vRemainingHours)&amp;lt;=49),RGB(154,155,156),&lt;/P&gt;&lt;P&gt;IF($(vRemainingHours)&amp;gt;=49.1 ,RGB(0,0,0)&lt;/P&gt;&lt;P&gt;)))))))))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;Text:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;=IF ($(vRemainingHours)&amp;lt;0,RGB(255,0,0),&lt;/P&gt;&lt;P&gt;IF(($(vRemainingHours)&amp;gt;=1 and $(vRemainingHours)&amp;lt;=6) ,RGB(255,255,255),&lt;/P&gt;&lt;P&gt;IF(($(vRemainingHours)&amp;gt;=6.1 and $(vRemainingHours)&amp;lt;=13),RGB(0,0,0),&lt;/P&gt;&lt;P&gt;IF(($(vRemainingHours)&amp;gt;=13.1 and $(vRemainingHours)&amp;lt;=20),RGB(0,0,0),&lt;/P&gt;&lt;P&gt;IF(($(vRemainingHours)&amp;gt;=20.1 and $(vRemainingHours)&amp;lt;=27),RGB(0,0,0),&lt;/P&gt;&lt;P&gt;IF(($(vRemainingHours)&amp;gt;=27.1 and $(vRemainingHours)&amp;lt;=35),RGB(255,255,255),&lt;/P&gt;&lt;P&gt;IF(($(vRemainingHours)&amp;gt;=35.1 and $(vRemainingHours)&amp;lt;=42),RGB(0,0,0),&lt;/P&gt;&lt;P&gt;IF(($(vRemainingHours)&amp;gt;=42.1 and $(vRemainingHours)&amp;lt;=49),RGB(255,255,255),&lt;/P&gt;&lt;P&gt;IF($(vRemainingHours)&amp;gt;=49.1 ,RGB(255,255,255))))))))))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;$(vRemainingHours) is my chart-expression.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;The condition to change the text color should be added in the text color-expression.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Also, is there any other/better way to depict availability change in the above chart so that it's more visually attention-catching?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Any help would be appreciated!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;EM&gt;&lt;STRONG&gt;YASH&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2018 06:59:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-Font-Color/m-p/98973#M15826</guid>
      <dc:creator>yashcena</dc:creator>
      <dc:date>2018-07-02T06:59:04Z</dc:date>
    </item>
  </channel>
</rss>

