<?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: How to change TAB Color?? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-change-TAB-Color/m-p/394485#M1161515</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can change the color of the tab on the properties screen of the sheet. Select Custom Colors under Tab Settings. Click on Tab Color, select the Calculated option under Base color and use as expression: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(GetActiveSheetId()='Document\SH02',yellow(),white())&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Replace SH02 with the ID of the sheet you're changing the color setting. If you want you can use the same expression for the background color of the sheet so the entire sheet turns yellow if you select it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Nov 2012 08:33:57 GMT</pubDate>
    <dc:creator>Gysbert_Wassenaar</dc:creator>
    <dc:date>2012-11-02T08:33:57Z</dc:date>
    <item>
      <title>How to change TAB Color??</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-TAB-Color/m-p/394481#M1161511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have 7 Tabs in my qvw file now I want when I select any particular tab it color will become yellow.&lt;/P&gt;&lt;P&gt;Where is this setting?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2012 08:02:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-TAB-Color/m-p/394481#M1161511</guid>
      <dc:creator>jsingh71</dc:creator>
      <dc:date>2012-11-02T08:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to change TAB Color??</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-TAB-Color/m-p/394482#M1161512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ajit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Sorry I Didn't Get You Can You Please Send Me your Test App.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2012 08:12:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-TAB-Color/m-p/394482#M1161512</guid>
      <dc:creator />
      <dc:date>2012-11-02T08:12:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to change TAB Color??</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-TAB-Color/m-p/394483#M1161513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Look under "tab settings" in the sheet properties for every sheet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/100292"&gt;Vegar Lie Arntsen&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;QlikView consultant at &lt;/EM&gt;&lt;A href="http://bit.ly/PoSwU2"&gt;egbs consulting ab&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Blog (in Swedish):&lt;/EM&gt; &lt;A href="http://bit.ly/UkXdvt"&gt;bi-effekten.se&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2012 08:21:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-TAB-Color/m-p/394483#M1161513</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2012-11-02T08:21:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to change TAB Color??</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-TAB-Color/m-p/394484#M1161514</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;&lt;SPAN style="text-decoration: line-through;"&gt;There is no such setting. You can set color statically.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: line-through;"&gt;But&lt;/SPAN&gt; you can use Actions and a Macro to change the tab color dynamically.&lt;/P&gt;&lt;P&gt;There is an example in API Guide.qvw:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;set mysheet=ActiveDocument.ActiveSheet&lt;/P&gt;&lt;P&gt;set sp=mysheet.GetProperties&lt;/P&gt;&lt;P&gt;sp.TabAttr.BgColor.PrimaryCol.Col = RGB(255,0,0)&lt;/P&gt;&lt;P&gt;sp.TabAttr.FgColor.PrimaryCol.Col = RGB(0,255,0)&lt;/P&gt;&lt;P&gt;sp.TabAttr.Mode = 2&amp;nbsp;&amp;nbsp; ' custom colors&lt;/P&gt;&lt;P&gt;mysheet.SetProperties sp&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2012 08:27:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-TAB-Color/m-p/394484#M1161514</guid>
      <dc:creator>whiteline</dc:creator>
      <dc:date>2012-11-02T08:27:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to change TAB Color??</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-TAB-Color/m-p/394485#M1161515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can change the color of the tab on the properties screen of the sheet. Select Custom Colors under Tab Settings. Click on Tab Color, select the Calculated option under Base color and use as expression: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(GetActiveSheetId()='Document\SH02',yellow(),white())&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Replace SH02 with the ID of the sheet you're changing the color setting. If you want you can use the same expression for the background color of the sheet so the entire sheet turns yellow if you select it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2012 08:33:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-TAB-Color/m-p/394485#M1161515</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2012-11-02T08:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to change TAB Color??</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-TAB-Color/m-p/394486#M1161516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank You Very Much Gysbert.....you rocked again...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2012 09:16:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-TAB-Color/m-p/394486#M1161516</guid>
      <dc:creator>jsingh71</dc:creator>
      <dc:date>2012-11-02T09:16:58Z</dc:date>
    </item>
  </channel>
</rss>

