<?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 hide and show tab in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/hide-and-show-tab/m-p/165779#M503789</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanx a lot.&lt;/P&gt;&lt;P&gt;it's working now&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Nov 2009 15:53:45 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-11-26T15:53:45Z</dc:date>
    <item>
      <title>hide and show tab</title>
      <link>https://community.qlik.com/t5/QlikView/hide-and-show-tab/m-p/165777#M503787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can somebody please tell me how to hide and show a tab using a button click[*-)]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Nov 2009 14:10:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/hide-and-show-tab/m-p/165777#M503787</guid>
      <dc:creator />
      <dc:date>2009-11-26T14:10:13Z</dc:date>
    </item>
    <item>
      <title>hide and show tab</title>
      <link>https://community.qlik.com/t5/QlikView/hide-and-show-tab/m-p/165778#M503788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. You have to make a button.&lt;/P&gt;&lt;P&gt;2. Click properties - in function mrak MAcro. I next tab write a macro by editing.&lt;/P&gt;&lt;P&gt;3. Exmaple o f Macro&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;Sub show&lt;BR /&gt;set y = ActiveDocument.Variables("Marketing")&lt;BR /&gt;y.SetContent "0", true&lt;BR /&gt;end sub&lt;BR /&gt;&lt;BR /&gt;sub market&lt;BR /&gt;set y = ActiveDocument.Variables("Marketing")&lt;BR /&gt; if y.GetContent.String="1" then&lt;BR /&gt; ActiveDocument.Variables("Marketing").SetContent "0",true&lt;BR /&gt; set button1 = ActiveDocument.getsheetobject("BU63")&lt;BR /&gt;set prop = button1.GetProperties&lt;BR /&gt; prop.Text.v = "Pokaz analizy marketingowe"&lt;BR /&gt; button1.SetProperties prop&lt;BR /&gt; else&lt;BR /&gt; ActiveDocument.Variables("Marketing").SetContent "1",true&lt;BR /&gt; set button1 = ActiveDocument.getsheetobject("BU63")&lt;BR /&gt; set prop = button1.GetProperties&lt;BR /&gt; prop.Text.v = "Ukryj analizy marketingowe"&lt;BR /&gt; button1.SetProperties prop&lt;BR /&gt; end if&lt;BR /&gt;end sub&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;4. In sheets you want to hide/show by macro in properties in Show Sheet write in this example - in conditional:&lt;/P&gt;&lt;P&gt;Marketing = 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It shuold now works&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Nov 2009 15:46:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/hide-and-show-tab/m-p/165778#M503788</guid>
      <dc:creator />
      <dc:date>2009-11-26T15:46:11Z</dc:date>
    </item>
    <item>
      <title>hide and show tab</title>
      <link>https://community.qlik.com/t5/QlikView/hide-and-show-tab/m-p/165779#M503789</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanx a lot.&lt;/P&gt;&lt;P&gt;it's working now&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Nov 2009 15:53:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/hide-and-show-tab/m-p/165779#M503789</guid>
      <dc:creator />
      <dc:date>2009-11-26T15:53:45Z</dc:date>
    </item>
    <item>
      <title>hide and show tab</title>
      <link>https://community.qlik.com/t5/QlikView/hide-and-show-tab/m-p/165780#M503790</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;A very similar solution I use is as follows. First, I create all tabs with their objects and I click "Show Sheet" if vVisible='value'. I use a inline table of values for vVisible for each tab I want to show/hide. When clicking the button, I execute a macro kind of&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Sub ShowSheet1&lt;BR /&gt; ActiveDocument.Fields("vVariable").Select "Sheet1"&lt;BR /&gt; ActiveDocument.Sheets("SH02").Activate //Sheet ID&lt;BR /&gt;End Sub&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;In the hidden tab, the "Close" button would be very similar to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Sub CloseSheet1&lt;BR /&gt; ActiveDocument.Fields("vVariable").Clear&lt;BR /&gt; ActiveDocument.Sheets("SH01").Activate //Sheet ID for Main Tab&lt;BR /&gt;End Sub&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;DIV&gt;Regards.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Nov 2009 16:02:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/hide-and-show-tab/m-p/165780#M503790</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2009-11-26T16:02:11Z</dc:date>
    </item>
    <item>
      <title>hide and show tab</title>
      <link>https://community.qlik.com/t5/QlikView/hide-and-show-tab/m-p/165781#M503791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;On my case, I only check the 'Hide tab' option at 'Documents Properties'. Then, a created a button for each tab to execute a macro for each tab too.&lt;/P&gt;&lt;P&gt;A created one macro for each tab like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;Sub ShowSheet1&lt;BR /&gt; ActiveDocument.Sheets("SH10").Activate //Sheet ID&lt;BR /&gt;End Sub&lt;/P&gt;&lt;PRE&gt;bye&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Apr 2011 20:00:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/hide-and-show-tab/m-p/165781#M503791</guid>
      <dc:creator />
      <dc:date>2011-04-07T20:00:00Z</dc:date>
    </item>
  </channel>
</rss>

