I have created a report in Access and would like other users to view it, but I don't want them to see the database. What is the best way to distribute this report?
This is a simple solution I came up with for distributing a current employee phone list. On the form's Save button I attached the following code and created shortcuts on the users' desktops which point to the snapshot. Whenever the personnel clerk updates the phone list and saves it, an updated snapshot is available for viewing.
Private Sub Command113_Click()
On Error GoTo Err_command113_Click
This is a report that comes from live data so the data is updated all of the time and I don't want to have to open this report and save as a snapshot everyday. I want the user to pull the updated report on their own without seeing the database.
Well, you can create another db and link to the necessary tables. In the new db, select a startup form and on that forms' onLoad event, open the report. On the report's close event, shut down the db.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.