Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Minimize all objects

Hi guys,

Do you know how to minimize all charts in one click?

Thanks,

1 Solution

Accepted Solutions
Gysbert_Wassenaar

With a button that has an action added to it that runs a macro like below:

sub minimizeall()

    set s=ActiveDocument.Sheets("Main")

    for i=0 to s.NoOfSheetObjects-1

        s.SheetObjects(i).Minimize

    next

end sub


talk is cheap, supply exceeds demand

View solution in original post

2 Replies
Gysbert_Wassenaar

With a button that has an action added to it that runs a macro like below:

sub minimizeall()

    set s=ActiveDocument.Sheets("Main")

    for i=0 to s.NoOfSheetObjects-1

        s.SheetObjects(i).Minimize

    next

end sub


talk is cheap, supply exceeds demand
jaimeaguilar
Partner - Specialist II
Partner - Specialist II

Hi,

you can try creating a button and adding the action "minimize object" inside Layout category. So you can add an action for every object you wish to minimize when you click the button.

regards