Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi ,
I'm trying to get the current active object into a Qlikview variable.
I did a Macro where I have a vbscript variable. It' working
Set ContainerObj = ActiveDocument.GetSheetObject("DUP")
set ContProp=ContainerObj.GetProperties
var= ContProp.SingleObjectActiveIndex
msgbox "var = " & var
end sub
Do you know how I can bring that in my app in order to use it?
Thanks
Cheers
If your creates a variable "YourVariable" in your application you could fill them with:
...
ActiveDocument.Variables("YourVariable").SetContent var, true
- Marcus