Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Activate sheet objects in container

Hi,

Can we activate the sheet objects inside a container without manual chart selection in container ?

Is this possible ?

Thanks in advance.

Regards,

Venkat

2 Replies
Not applicable
Author

Do you have an example of what you are looking for?

How do you want this container to work in the end?

Thanks

Ali

Not applicable
Author

Sounds like you need a macro. This will allow you to select a chart in a container via a button with macro;

Refer to this post as well; http://community.qlik.com/message/257092

sub selection1

Set ContainerObj = ActiveDocument.GetSheetObject("CT01")

set ContProp=ContainerObj.GetProperties

ContProp.SingleObjectActiveIndex = 0

ContainerObj.SetProperties ContProp

end sub