Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
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
Partner - Champion III
Partner - Champion III

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
Partner - Champion III
Partner - Champion III

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