<?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: Text object change color when value get associated in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460284#M795234</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prachi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can use below expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;For IT text Object:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=IF( SubStringCount(Concat( Dept,'|'),'IT')&amp;gt;0 ,Green())&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;For BPO text object :&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;=IF( SubStringCount(Concat( Dept,'|'),'BPO') &amp;gt;0 ,Green())&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Jan 2018 11:36:44 GMT</pubDate>
    <dc:creator>sasikanth</dc:creator>
    <dc:date>2018-01-08T11:36:44Z</dc:date>
    <item>
      <title>Text object change color when value get associated</title>
      <link>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460275#M795225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello everyone&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In below, i used Action&amp;gt;select in field on text object. my query is when i select abc from&amp;nbsp; emp_name list box that time text object will show as a active as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/189262_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You.&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/Text-object-change-color-when-value-get-associated/m-p/1460275#M795225</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Text object change color when value get associated</title>
      <link>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460276#M795226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prachi, for only that value selected can be set the conditional color to:&lt;/P&gt;&lt;P&gt;If(emp_name='abc', RGB(&lt;EM&gt;Color1&lt;/EM&gt;), RGB(&lt;EM&gt;Color2&lt;/EM&gt;)) // Change ColorX to the color codes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For that value in selected values can be:&lt;/P&gt;&lt;P&gt;If(Index(';' &amp;amp; GetFieldSelections(emp_name, ';') &amp;amp; ';', 'abc'), &lt;SPAN style="font-size: 13.3333px;"&gt;RGB(&lt;/SPAN&gt;&lt;EM style="font-size: 13.3333px;"&gt;Color1&lt;/EM&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;), RGB(&lt;/SPAN&gt;&lt;EM style="font-size: 13.3333px;"&gt;Color2&lt;/EM&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;)) // Change ColorX to the color codes&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jan 2018 11:15:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460276#M795226</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2018-01-08T11:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: Text object change color when value get associated</title>
      <link>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460277#M795227</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 like below,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just create calculated text box color using below expression&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if(GetFieldSelections(emp_name)='abc',green(),White())&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="189272" alt="Capture.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/189272_Capture.JPG" style="height: 334px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;note: if you selecting multi value then u have use concatenate function within the expression&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jan 2018 11:17:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460277#M795227</guid>
      <dc:creator>devarasu07</dc:creator>
      <dc:date>2018-01-08T11:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: Text object change color when value get associated</title>
      <link>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460278#M795228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i don't want to show for a single value, i want to show&amp;nbsp; like if i select any value associated with IT or BPO then it will change color&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jan 2018 11:21:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460278#M795228</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-08T11:21:07Z</dc:date>
    </item>
    <item>
      <title>Re: Text object change color when value get associated</title>
      <link>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460279#M795229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please find the attached file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jan 2018 11:23:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460279#M795229</guid>
      <dc:creator>neha_shirsath</dc:creator>
      <dc:date>2018-01-08T11:23:12Z</dc:date>
    </item>
    <item>
      <title>Re: Text object change color when value get associated</title>
      <link>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460280#M795230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have PE ,please share screen shot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jan 2018 11:26:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460280#M795230</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-08T11:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: Text object change color when value get associated</title>
      <link>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460281#M795231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;then u can use getselectedcount function.&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if(GetSelectedCount(emp_name)&amp;gt;0,green(),White())&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jan 2018 11:27:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460281#M795231</guid>
      <dc:creator>devarasu07</dc:creator>
      <dc:date>2018-01-08T11:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: Text object change color when value get associated</title>
      <link>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460282#M795232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Very similar to use with Dept field, only change is that values are not selected directly, so GetFieldSelctions can't be used:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;If(Index(';' &amp;amp; Concat(Distinct Dept, ';') &amp;amp; ';', ';IT;'), &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;RGB(&lt;/SPAN&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;Color1&lt;/EM&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;), RGB(&lt;/SPAN&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;Color2&lt;/EM&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;)) // Change ColorX to the color codes&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;The semicolons is to avoid miscounts with possible departments containing string 'IT' in the full name&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jan 2018 11:30:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460282#M795232</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2018-01-08T11:30:15Z</dc:date>
    </item>
    <item>
      <title>Re: Text object change color when value get associated</title>
      <link>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460283#M795233</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;can you try the below color expression :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for BPO :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=if(Concat(Distinct Dept,',')&amp;lt;&amp;gt;Concat(DISTINCT{1} Dept,',') and Index(Concat(Distinct Dept,','),'BPO')=1,Green(),RGB(213,238,248))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;for IT:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=if(Concat(Distinct Dept,',')&amp;lt;&amp;gt;Concat(DISTINCT{1} Dept,',') and Index(Concat(Distinct Dept,','),'IT')=1,Green(),RGB(213,238,248))&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jan 2018 11:35:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460283#M795233</guid>
      <dc:creator>mdmukramali</dc:creator>
      <dc:date>2018-01-08T11:35:56Z</dc:date>
    </item>
    <item>
      <title>Re: Text object change color when value get associated</title>
      <link>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460284#M795234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prachi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can use below expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;For IT text Object:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=IF( SubStringCount(Concat( Dept,'|'),'IT')&amp;gt;0 ,Green())&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;For BPO text object :&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;=IF( SubStringCount(Concat( Dept,'|'),'BPO') &amp;gt;0 ,Green())&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jan 2018 11:36:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460284#M795234</guid>
      <dc:creator>sasikanth</dc:creator>
      <dc:date>2018-01-08T11:36:44Z</dc:date>
    </item>
    <item>
      <title>Re: Text object change color when value get associated</title>
      <link>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460285#M795235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/189273_Capture.PNG" style="height: 296px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jan 2018 11:36:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460285#M795235</guid>
      <dc:creator>neha_shirsath</dc:creator>
      <dc:date>2018-01-08T11:36:52Z</dc:date>
    </item>
    <item>
      <title>Re: Text object change color when value get associated</title>
      <link>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460286#M795236</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;even you can try this one also:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for BPO:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=if(Concat(Dept,',')&amp;lt;&amp;gt;Concat({1}Dept,',') and Index(Concat(Distinct Dept,','),'BPO')&amp;gt;=1,Green(),RGB(213,238,248))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;for IT:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;=if(Concat(Dept,',')&amp;lt;&amp;gt;Concat({1}Dept,',') and Index(Concat(Distinct Dept,','),'IT')&amp;gt;=1,Green(),RGB(213,238,248))&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jan 2018 11:40:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460286#M795236</guid>
      <dc:creator>mdmukramali</dc:creator>
      <dc:date>2018-01-08T11:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: Text object change color when value get associated</title>
      <link>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460287#M795237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It works fine but when i select&amp;nbsp; aabb from BPO &amp;amp; abc from IT then it shows like inactive .&lt;/P&gt;&lt;P&gt;my requirement is when i select both value then it change with green color.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/189286_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jan 2018 12:21:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460287#M795237</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-08T12:21:27Z</dc:date>
    </item>
    <item>
      <title>Re: Text object change color when value get associated</title>
      <link>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460288#M795238</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;Final Try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;for BPO:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=if((Concat(Dept,',')&amp;lt;&amp;gt;Concat({1}Dept,',') and Index(Concat(Distinct Dept,','),'BPO')&amp;gt;=1)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;OR&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(GetSelectedCount(Dept)&amp;gt;=1 and Index(Concat(Distinct Dept,','),'BPO')&amp;gt;=1)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;,Green(),RGB(213,238,248))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For IT :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;EM&gt;&lt;STRONG&gt;=if((Concat(Dept,',')&amp;lt;&amp;gt;Concat({1}Dept,',') and Index(Concat(Distinct Dept,','),'IT')&amp;gt;=1)&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&lt;EM&gt;OR&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&lt;EM&gt;(GetSelectedCount(Dept)&amp;gt;=1 and Index(Concat(Distinct Dept,','),'IT')&amp;gt;=1)&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;EM&gt;&lt;STRONG&gt;,Green(),RGB(213,238,248))&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jan 2018 12:30:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460288#M795238</guid>
      <dc:creator>mdmukramali</dc:creator>
      <dc:date>2018-01-08T12:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: Text object change color when value get associated</title>
      <link>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460289#M795239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Add the below condition in your text box expression-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(GetSelectedCount(EmpName)&amp;gt;1,Concat(Dept,chr(10)),Dept)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jan 2018 12:39:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460289#M795239</guid>
      <dc:creator>neha_shirsath</dc:creator>
      <dc:date>2018-01-08T12:39:17Z</dc:date>
    </item>
    <item>
      <title>Re: Text object change color when value get associated</title>
      <link>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460290#M795240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello neha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i select BPO text object it shows IT details and same with IT text object but when i select values from list box then it works fine.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jan 2018 12:51:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460290#M795240</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-08T12:51:46Z</dc:date>
    </item>
    <item>
      <title>Re: Text object change color when value get associated</title>
      <link>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460291#M795241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try with below expressions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For BPO:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=IF( SubStringCount(Concat( Dept,'|'),'BPO') &amp;gt;0 and GetSelectedCount(EmpName)&amp;gt;0 ,Green())&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FOR IT:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=IF( SubStringCount(Concat( Dept,'|'),'IT') &amp;gt;0 and GetSelectedCount(EmpName)&amp;gt;0 ,Green())&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jan 2018 13:22:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460291#M795241</guid>
      <dc:creator>sasikanth</dc:creator>
      <dc:date>2018-01-08T13:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: Text object change color when value get associated</title>
      <link>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460292#M795242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, what is issue now?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jan 2018 03:36:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-object-change-color-when-value-get-associated/m-p/1460292#M795242</guid>
      <dc:creator>neha_shirsath</dc:creator>
      <dc:date>2018-01-09T03:36:08Z</dc:date>
    </item>
  </channel>
</rss>

