Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
i need to know if i have the possiblity to automatically trigger (schedule) qlikview macros from server:
example the macro x will exécute one time per week with date variable
Here, Is the one approach
Sub Workbook_Open()
Application.OnTime TimeValue("18:00:00"), "MyMacro" ' This macro works every day 6 PM
End Sub