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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Button + Stored procedure

Hallo everyone,

New day, new question. I was wondering if it is possible to configure a button in such a way thay a click on it would:

* Execute a stored procedure

* Bonus: Perform a full reload of the document

If this is possible, how can this be achieved? By using a macro?

Thank you,

Jan

Labels (1)
1 Reply
marcus_sommer
MVP
MVP

Perhaps this is helpful:

set objWscript = CreateObject("WScript.Shell")

objWscript.Run YOURPATH & YOURFILE ' bat, cmd, vbs

'ActiveDocumentGetApplication.Sleep 10000 '10 sec

ActiveDocument.Reload

- Marcus