<?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 How to highlight a value that is dependent on another value in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-highlight-a-value-that-is-dependent-on-another-value/m-p/1533324#M746792</link>
    <description>&lt;P&gt;I'm trying to highlight values in the Job column that matches the Dependency Column where the status is equal to red.&lt;/P&gt;&lt;P&gt;In the first image, I have a list of jobs,&amp;nbsp; the job's status and it's dependency. So if a Job's status is 'red' and it has a dependency, it should highlight the job that equals the&amp;nbsp; dependency value.&lt;/P&gt;&lt;P&gt;I have tried several different expressions, but none gives me the result I want to display.&lt;/P&gt;&lt;P&gt;I've tried if(WildMatch(Job, '*' &amp;amp; [Dependency] &amp;amp; '*'), RGB(0, 255, 255)) but it doesn't seem to work&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="After.PNG" style="width: 288px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/4236i49B477ABAFBBBB8A/image-size/large?v=v2&amp;amp;px=999" role="button" title="After.PNG" alt="After.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The output that I am looking for can be seen below&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Before.PNG" style="width: 292px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/4235i798BB30CC0039397/image-size/large?v=v2&amp;amp;px=999" role="button" title="Before.PNG" alt="Before.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>ShaunJMD</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>How to highlight a value that is dependent on another value</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-highlight-a-value-that-is-dependent-on-another-value/m-p/1533324#M746792</link>
      <description>&lt;P&gt;I'm trying to highlight values in the Job column that matches the Dependency Column where the status is equal to red.&lt;/P&gt;&lt;P&gt;In the first image, I have a list of jobs,&amp;nbsp; the job's status and it's dependency. So if a Job's status is 'red' and it has a dependency, it should highlight the job that equals the&amp;nbsp; dependency value.&lt;/P&gt;&lt;P&gt;I have tried several different expressions, but none gives me the result I want to display.&lt;/P&gt;&lt;P&gt;I've tried if(WildMatch(Job, '*' &amp;amp; [Dependency] &amp;amp; '*'), RGB(0, 255, 255)) but it doesn't seem to work&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="After.PNG" style="width: 288px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/4236i49B477ABAFBBBB8A/image-size/large?v=v2&amp;amp;px=999" role="button" title="After.PNG" alt="After.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The output that I am looking for can be seen below&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Before.PNG" style="width: 292px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/4235i798BB30CC0039397/image-size/large?v=v2&amp;amp;px=999" role="button" title="Before.PNG" alt="Before.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-highlight-a-value-that-is-dependent-on-another-value/m-p/1533324#M746792</guid>
      <dc:creator>ShaunJMD</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to highlight a value that is dependent on another value</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-highlight-a-value-that-is-dependent-on-another-value/m-p/1533365#M746793</link>
      <description>&lt;P&gt;Hey there,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Perhaps consider this script code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;FONT&gt;Table:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Job, Status, Dependency&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A, Green, J&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B, Green, C&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; C, Red, D&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; D, Green&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; E, Green&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; F, Green, H&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; G, Green, F&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; H, Green&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; I, Red, K&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; J, Green,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; K, Green,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; L, Red, A&lt;BR /&gt;];&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT&gt;left join&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT&gt;LOAD&lt;BR /&gt;&amp;nbsp;Dependency as Job,&lt;BR /&gt;&amp;nbsp;'Blue' as ColoringCode&lt;BR /&gt;Resident Table&lt;BR /&gt;Where Status = 'Red';&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT&gt;Then use this expression in the Background color:&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT&gt;=if(not isnull(ColoringCode), RGB(0, 255, 255))&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT&gt;After that, please see the following result:&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot_1.png" style="width: 247px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/4250i418E87B1CAC15465/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot_1.png" alt="Screenshot_1.png" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT&gt;Please refer to the attached qvw file.&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT&gt;Best regards in the hope this helped you,&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT&gt;MB&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Tue, 22 Jan 2019 15:09:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-highlight-a-value-that-is-dependent-on-another-value/m-p/1533365#M746793</guid>
      <dc:creator>miguelbraga</dc:creator>
      <dc:date>2019-01-22T15:09:17Z</dc:date>
    </item>
  </channel>
</rss>

