Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I'm trying to open another Qlikview application on selection of data value from a field.
I have given this action in field event triggers for that field.
But it is not working.
The same works when i tried applying the action on button click.
Any reason why its not working on "On Select" of field?
hmm weird...:/
try to use macro (on select) instead of builtin trigger open file
SUB MacroOnSelect
set newone = CreateObject("QlikTech.QlikView")
newone.OpenDoc "C:\Documents and Settings\BOMI\Pulpit\minmax.qvw"
END SUB
Are you using Plugin or Ajax?
Can you give us the macro code you are using?
Running Ajax this will try to open minmax.qvw on the server:
newone.OpenDoc "C:\Documents and Settings\BOMI\Pulpit\minmax.qvw"
m using desktop version.
well I have found workaround for this.
applied buitin trigger of "Open Qlikview Documnt" on button.
and Pressed this button on "OnSelect" event of the field.
Sub PressBtn
ActiveDocument.GetSheetObject("PressBtn").Press
end sub
and this worked for me.
thank u for your time guys.
But still don't know why this not work on field event triggers.
Regards,
Sparten B