Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Open MS Access form from QlikView

Hi All,

Trying to open a MS Access form from a QV dashboard, so that the user can update the DB from an app on Access Point. Has anyone managed to do this?

Thanks

1 Reply
m_woolf
Master II
Master II

You can do this with a vbscript macro:

sub OpenAccess

     Set ACApp = CreateObject("Access.Application")

     ACApp.Visible = True

     ACApp.UserControl = true

     ACApp.OpenCurrentDatabase "C:\Users\TestUser\Documents\Database1.accdb"

end sub