<?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 Minimize in groups in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Minimize-in-groups/m-p/145085#M23875</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Oleg, I will have ago at the macros.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 May 2009 11:44:00 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-05-27T11:44:00Z</dc:date>
    <item>
      <title>Minimize in groups</title>
      <link>https://community.qlik.com/t5/QlikView/Minimize-in-groups/m-p/145083#M23873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there&lt;/P&gt;&lt;P&gt;I found this thread in the archives but I cannot see the code that was reccomended. I was wondering if someone could help with this.&lt;/P&gt;&lt;P&gt;&lt;A href="http://community.qlik.com/forums/p/15266/59562.aspx#59562"&gt;http://community.qlik.com/forums/p/15266/59562.aspx#59562&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2009 04:23:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Minimize-in-groups/m-p/145083#M23873</guid>
      <dc:creator />
      <dc:date>2009-05-27T04:23:59Z</dc:date>
    </item>
    <item>
      <title>Minimize in groups</title>
      <link>https://community.qlik.com/t5/QlikView/Minimize-in-groups/m-p/145084#M23874</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately, none of the old attachments could make it to the new forum...&lt;/P&gt;&lt;P&gt;Basically, the idea there was to use variables and "Show Conditions" that would make more than one table to get displayed or hidden. Depending on your application design, you could attach small macros to various events like activating a chart, or simply use buttons, or making a selection from the list of available chart groups, etc...&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;Oleg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2009 11:30:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Minimize-in-groups/m-p/145084#M23874</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2009-05-27T11:30:59Z</dc:date>
    </item>
    <item>
      <title>Minimize in groups</title>
      <link>https://community.qlik.com/t5/QlikView/Minimize-in-groups/m-p/145085#M23875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Oleg, I will have ago at the macros.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2009 11:44:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Minimize-in-groups/m-p/145085#M23875</guid>
      <dc:creator />
      <dc:date>2009-05-27T11:44:00Z</dc:date>
    </item>
    <item>
      <title>Minimize in groups</title>
      <link>https://community.qlik.com/t5/QlikView/Minimize-in-groups/m-p/145086#M23876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;QV Version 9 provide the option to create a button and use "ACTIONS" like Minimize (Restore) Object.&lt;/P&gt;&lt;P&gt;Actions are replacing some of the macros used today.&lt;/P&gt;&lt;P&gt;Rainer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2009 15:00:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Minimize-in-groups/m-p/145086#M23876</guid>
      <dc:creator />
      <dc:date>2009-05-27T15:00:23Z</dc:date>
    </item>
    <item>
      <title>Minimize in groups</title>
      <link>https://community.qlik.com/t5/QlikView/Minimize-in-groups/m-p/145087#M23877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I solved the problem this way:&lt;/P&gt;&lt;P&gt;Sub Macro_Tables&lt;BR /&gt;set a=ActiveDocument.GetSheetObject("TB01")&lt;BR /&gt;set b=ActiveDocument.GetSheetObject("TB02")&lt;BR /&gt;if a.IsMinimized and b.IsMinimized then&lt;BR /&gt; a.Restore&lt;BR /&gt;else&lt;BR /&gt; a.Minimize&lt;BR /&gt;end if&lt;BR /&gt;End Sub&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Sub Macro_Tables_2&lt;BR /&gt;set a=ActiveDocument.GetSheetObject("TB01")&lt;BR /&gt;set b=ActiveDocument.GetSheetObject("TB02")&lt;BR /&gt;if not a.IsMinimized and b.IsMinimized then&lt;BR /&gt; b.Restore&lt;BR /&gt;else&lt;BR /&gt; a.Minimize&lt;BR /&gt;end if&lt;BR /&gt;End Sub&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Sub Macro_Tables_3&lt;BR /&gt;set a=ActiveDocument.GetSheetObject("TB01")&lt;BR /&gt;set b=ActiveDocument.GetSheetObject("TB02")&lt;BR /&gt;if not b.IsMinimized and a.IsMinimized then&lt;BR /&gt; b.Minimize&lt;BR /&gt;else&lt;BR /&gt; a.Restore&lt;BR /&gt;end if&lt;BR /&gt;End Sub&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;sub Macro_Group&lt;BR /&gt;call Macro_Tables&lt;BR /&gt;call Macro_Tables_2&lt;BR /&gt;call Macro_Tables_3&lt;BR /&gt;end sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Of course this is useful only in case u are using 2 or max 3 tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;russianblue&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 12:36:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Minimize-in-groups/m-p/145087#M23877</guid>
      <dc:creator />
      <dc:date>2010-01-05T12:36:54Z</dc:date>
    </item>
  </channel>
</rss>

