Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Actions related to button are really useful. I use them to restore / minimize some of my charts.
Is it possible to specify to restore or minimize several objects within the same action ? How ?
I would like to avoid the use of variables.
Thanks a lot for your help !
Hi
The following macro minimizes all objects on the active sheet.
sub MinimizeAll
Objects = ActiveDocument.ActiveSheet.GetSheetObjects
For j = lBound(Objects) To uBound(Objects)
set obj = Objects(j)
obj.Minimize
next
end sub
/Fredrik
Hi
The following macro minimizes all objects on the active sheet.
sub MinimizeAll
Objects = ActiveDocument.ActiveSheet.GetSheetObjects
For j = lBound(Objects) To uBound(Objects)
set obj = Objects(j)
obj.Minimize
next
end sub
/Fredrik
Hi,
For button you can define more than one action, so why don't you try to add one action to minimize for each object you have in sheet?
Andris
Thanks for your answer.
That is the way I proceed for the moment.
But I am not satisfied with it, because as soon as I have more than 5 objects to minimize, it would be really more useful to specify all of them into only one action
Mr. Qlikview, if you hear me :
- please add a possibility to find objects ID directly from the action form
- please add a list of values inside the formula assistant