Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

button which minimizes serveral objects

Hi all,

i want to create a button that triggers an action.

It should minimize 3 different objects.

Is it generally possible to manage this demand with the attached function:

(Proporties => Action => Layout => "minimize Object")

i would be helpful for any advices

greetings

daniel

1 Solution

Accepted Solutions
Not applicable
Author

add macro

sub Minimize
ActiveDocument.GetSheetObject("CH03").Minimize
ActiveDocument.GetSheetObject("CH08").Minimize
ActiveDocument.GetSheetObject("CH09").Minimize
ActiveDocument.GetSheetObject("CH11").Minimize

.

.

.

.

.

.

ActiveDocument.GetSheetObject("CH20").Minimize

end sub

View solution in original post

4 Replies
Not applicable
Author

Hi Daniel,

use 3 actions for the 3 different objects

See attachment

Not applicable
Author

Hello,

this isn't  useful, if i have several worksheets, with up to 20 objects.

there must be a more comfortable way to achive this goal.

Not applicable
Author

add macro

sub Minimize
ActiveDocument.GetSheetObject("CH03").Minimize
ActiveDocument.GetSheetObject("CH08").Minimize
ActiveDocument.GetSheetObject("CH09").Minimize
ActiveDocument.GetSheetObject("CH11").Minimize

.

.

.

.

.

.

ActiveDocument.GetSheetObject("CH20").Minimize

end sub

Not applicable
Author

good idea.

i will check this out.