<?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 Selected tab in different color in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Selected-tab-in-different-color/m-p/197788#M57332</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Seems to be working for me. See attached. My example is slightly different since I adapted it from an earlier macro example (now using actions), so perhaps one of the differences is significant.&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;my variable is activeSheet&lt;BR /&gt;I'm setting it to text values, different for each sheet&lt;BR /&gt;The sheets have color expressions like this: if(activeSheet='Main',lightgreen(),lightblue())&lt;/P&gt;&lt;P&gt;Ah, maybe what you're missing is that you need a different value for the variable for each sheet? If you use 1 for all of them, yeah, they'd all change to the highlight color and stay that way.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Nov 2010 21:59:23 GMT</pubDate>
    <dc:creator>johnw</dc:creator>
    <dc:date>2010-11-22T21:59:23Z</dc:date>
    <item>
      <title>Selected tab in different color</title>
      <link>https://community.qlik.com/t5/QlikView/Selected-tab-in-different-color/m-p/197784#M57328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;I wanted to change the selected tab in the application to different color which makes it easy to differentiate between selected and not selected tab. Is it possible in Qlikview?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Nov 2010 20:05:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selected-tab-in-different-color/m-p/197784#M57328</guid>
      <dc:creator />
      <dc:date>2010-11-22T20:05:01Z</dc:date>
    </item>
    <item>
      <title>Selected tab in different color</title>
      <link>https://community.qlik.com/t5/QlikView/Selected-tab-in-different-color/m-p/197785#M57329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;First create a variable say vThisTab and set its value to 0.&lt;/P&gt;&lt;P&gt;Second go to Sheet Properties, Triggers, OnActivateSheet, Add Action, External, Set Variable, vThisTab, 1&lt;/P&gt;&lt;P&gt;Third, OnLeaveSheet, Set Variable, vThisTab, 0&lt;/P&gt;&lt;P&gt;Fourth, Sheet Properties, General, Tab Settings, Custom Colors, click on the Tab Color, Base Color, select Calculated and set the following conditional&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;If($(vThisTab) = 1, RGB(255, 0, 0), RGB(0, 255, 0))&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;You're done.&lt;/P&gt;&lt;P&gt;Change the colors and set one value in each tab and that's all.&lt;/P&gt;&lt;P&gt;Hope that helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Nov 2010 20:24:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selected-tab-in-different-color/m-p/197785#M57329</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2010-11-22T20:24:06Z</dc:date>
    </item>
    <item>
      <title>Selected tab in different color</title>
      <link>https://community.qlik.com/t5/QlikView/Selected-tab-in-different-color/m-p/197786#M57330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Whatever sheet you're entering is going to assign a value to vThisTab, so setting it to 0 as you leave shouldn't be necessary?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Nov 2010 20:39:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selected-tab-in-different-color/m-p/197786#M57330</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2010-11-22T20:39:13Z</dc:date>
    </item>
    <item>
      <title>Selected tab in different color</title>
      <link>https://community.qlik.com/t5/QlikView/Selected-tab-in-different-color/m-p/197787#M57331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i try this all the tabs remain as the variable vThistab =1. In this case the tabs stay red irrespective of if selected or not.&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Nov 2010 21:28:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selected-tab-in-different-color/m-p/197787#M57331</guid>
      <dc:creator />
      <dc:date>2010-11-22T21:28:38Z</dc:date>
    </item>
    <item>
      <title>Selected tab in different color</title>
      <link>https://community.qlik.com/t5/QlikView/Selected-tab-in-different-color/m-p/197788#M57332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Seems to be working for me. See attached. My example is slightly different since I adapted it from an earlier macro example (now using actions), so perhaps one of the differences is significant.&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;my variable is activeSheet&lt;BR /&gt;I'm setting it to text values, different for each sheet&lt;BR /&gt;The sheets have color expressions like this: if(activeSheet='Main',lightgreen(),lightblue())&lt;/P&gt;&lt;P&gt;Ah, maybe what you're missing is that you need a different value for the variable for each sheet? If you use 1 for all of them, yeah, they'd all change to the highlight color and stay that way.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Nov 2010 21:59:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selected-tab-in-different-color/m-p/197788#M57332</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2010-11-22T21:59:23Z</dc:date>
    </item>
    <item>
      <title>Selected tab in different color</title>
      <link>https://community.qlik.com/t5/QlikView/Selected-tab-in-different-color/m-p/197789#M57333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a Lot John.I got it. It is working fine now.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Nov 2010 22:14:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selected-tab-in-different-color/m-p/197789#M57333</guid>
      <dc:creator />
      <dc:date>2010-11-22T22:14:53Z</dc:date>
    </item>
    <item>
      <title>Re: Selected tab in different color</title>
      <link>https://community.qlik.com/t5/QlikView/Selected-tab-in-different-color/m-p/197790#M57334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was reading this and it's exactly what I'm trying to do. I just don't know how to write the variable as text values. Would you mind giving me a suggestion?&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, 07 Jun 2013 16:52:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selected-tab-in-different-color/m-p/197790#M57334</guid>
      <dc:creator />
      <dc:date>2013-06-07T16:52:03Z</dc:date>
    </item>
    <item>
      <title>Re: Selected tab in different color</title>
      <link>https://community.qlik.com/t5/QlikView/Selected-tab-in-different-color/m-p/197791#M57335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lavs - right-click on the tab header &amp;gt; Sheet Properties &amp;gt; Triggers.&amp;nbsp; This is where John is using a Set Variable action to change the variable.&amp;nbsp; The formula to change the colors is in Sheet Properties &amp;gt; General &amp;gt; Tab Settings &amp;gt; Custom Colors &amp;gt; formula. Hope that helps!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jun 2013 19:35:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selected-tab-in-different-color/m-p/197791#M57335</guid>
      <dc:creator />
      <dc:date>2013-06-07T19:35:15Z</dc:date>
    </item>
    <item>
      <title>Re: Selected tab in different color</title>
      <link>https://community.qlik.com/t5/QlikView/Selected-tab-in-different-color/m-p/197792#M57336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this video I done on YouTube&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://www.youtube.com/watch?v=aEAUHt6GzJA"&gt;http://www.youtube.com/watch?v=aEAUHt6GzJA&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jun 2013 23:02:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selected-tab-in-different-color/m-p/197792#M57336</guid>
      <dc:creator>rustyfishbones</dc:creator>
      <dc:date>2013-06-07T23:02:23Z</dc:date>
    </item>
    <item>
      <title>Re: Selected tab in different color</title>
      <link>https://community.qlik.com/t5/QlikView/Selected-tab-in-different-color/m-p/197793#M57337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;perfect - thanks so much! it's now working like a charm!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Jun 2013 20:26:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selected-tab-in-different-color/m-p/197793#M57337</guid>
      <dc:creator />
      <dc:date>2013-06-08T20:26:15Z</dc:date>
    </item>
  </channel>
</rss>

