<?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: Filter on legends in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Filter-on-legends/m-p/1369470#M418741</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Radhika,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you got the answer, mark it as correct answer and please close the thread. It may help others.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 May 2017 01:55:40 GMT</pubDate>
    <dc:creator>Siva_Sankar</dc:creator>
    <dc:date>2017-05-15T01:55:40Z</dc:date>
    <item>
      <title>Filter on legends</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-on-legends/m-p/1369463#M418734</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;Please find the attached application , i want to create filters on legends .. so basically if one clicks on Grenn legend - inside sla .. i should be filtering out all greens in the table .. is that possible ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 May 2017 21:55:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-on-legends/m-p/1369463#M418734</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-05-04T21:55:24Z</dc:date>
    </item>
    <item>
      <title>Re: Filter on legends</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-on-legends/m-p/1369464#M418735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Radhika,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a calculated field in the front end like below,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(isnull([Rum Overall TP50]),'Red',&lt;/P&gt;&lt;P&gt;if(([Rum Overall TP50])&amp;lt; $(vOverallTarget),'Green',&lt;/P&gt;&lt;P&gt;IF(([Rum Overall TP50]) &amp;gt; [Rum Overall Bridge TP50],'Red',&lt;/P&gt;&lt;P&gt;IF(([Rum Overall TP50]) &amp;lt; [Rum Overall Bridge TP50]and ([Rum Overall TP50]) &amp;gt; [Rum Network Target TP50],'Yellow'))))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 May 2017 03:44:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-on-legends/m-p/1369464#M418735</guid>
      <dc:creator>Siva_Sankar</dc:creator>
      <dc:date>2017-05-05T03:44:02Z</dc:date>
    </item>
    <item>
      <title>Re: Filter on legends</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-on-legends/m-p/1369465#M418736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Siva &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is the expression for back ground color right ? can you please eloborate why we are doing this and how it will help to enable legends ? .. i basically want to click on colored legends and the selected color legend should be filtered in the table .. so say for eg if i click on Inside SLA legend all the greens should be shown in the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 May 2017 17:15:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-on-legends/m-p/1369465#M418736</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-05-05T17:15:43Z</dc:date>
    </item>
    <item>
      <title>Re: Filter on legends</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-on-legends/m-p/1369466#M418737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Radhika,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Find the attached Test.qvw..i used the below script on top of your table..&lt;/P&gt;&lt;P&gt;New:&lt;/P&gt;&lt;P&gt;Load *,&lt;/P&gt;&lt;P&gt;If(isnull([Rum Overall TP50]),'Red',&lt;/P&gt;&lt;P&gt;if(([Rum Overall TP50])&amp;lt; [Rum Overall Target TP50],'Green',&lt;/P&gt;&lt;P&gt;IF(([Rum Overall TP50]) &amp;gt; [Rum Overall Bridge TP50],'Red',&lt;/P&gt;&lt;P&gt;IF( (([Rum Overall TP50]) &amp;lt; [Rum Overall Bridge TP50] )and (([Rum Overall TP50]) &amp;gt; [Rum Overall Target TP50]),'Yellow')))) as Colorstatus&lt;/P&gt;&lt;P&gt;Resident [Rum OpEx Latency];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop Table [Rum OpEx Latency];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And then i used colorstatus as action in our legend. This is for T50, you need to create for T90. Let me know if you still need help. Thanks.&lt;/P&gt;&lt;P&gt;Siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 May 2017 02:53:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-on-legends/m-p/1369466#M418737</guid>
      <dc:creator>Siva_Sankar</dc:creator>
      <dc:date>2017-05-06T02:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: Filter on legends</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-on-legends/m-p/1369467#M418738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great !! Thank you very much!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 May 2017 06:47:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-on-legends/m-p/1369467#M418738</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-05-07T06:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: Filter on legends</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-on-legends/m-p/1369468#M418739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Siva&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So i have added 6 more color expressions .. i have created a variable to pass the color values to the Overall table .. but i also have another Detail view table which has 3 metrics showing colors .. i have created 6 expressions ( 3 for tp50 and 3 for tp90 ) .. but not sure how i can pass these to the same variable ( =$(vRumColor)) ..can you help ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am using =$(vRumColor) as a&amp;nbsp; list box to select the values ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and one more complexity with this color expression i see it ..say for example when i select green for overall table even detail table is getting filtered on dates&amp;nbsp; (from overall) .. both the table should explicitly show the colored rows... is that possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 May 2017 08:37:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-on-legends/m-p/1369468#M418739</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-05-07T08:37:44Z</dc:date>
    </item>
    <item>
      <title>Re: Filter on legends</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-on-legends/m-p/1369469#M418740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use this in the listbox expression =if(vOverall=[Rum Overall TP50],$(vRumColor),$(vRumColor))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 May 2017 10:58:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-on-legends/m-p/1369469#M418740</guid>
      <dc:creator>Siva_Sankar</dc:creator>
      <dc:date>2017-05-07T10:58:53Z</dc:date>
    </item>
    <item>
      <title>Re: Filter on legends</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-on-legends/m-p/1369470#M418741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Radhika,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you got the answer, mark it as correct answer and please close the thread. It may help others.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 May 2017 01:55:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-on-legends/m-p/1369470#M418741</guid>
      <dc:creator>Siva_Sankar</dc:creator>
      <dc:date>2017-05-15T01:55:40Z</dc:date>
    </item>
  </channel>
</rss>

