|
Question : Running a subroutine automatically
|
|
I am using MS Access 2003.
I have a subroutine that will import a .csv file and append it to a master table. I would like this subroutine to run at a set time each morning with no intervention.
Is this possible?
|
|
Answer : Running a subroutine automatically
|
|
In the run box, don't select the access database. You need to have the full command line:
"C:\Program Files\Microsoft Office\MSACCESS.EXE" "Path\to\access.mdb file" /x MacroName
Your MSACCESS.EXE may be in a slightly different location. your Macro Name goes where I typed MacroName and your access database full path goes where I typed "Path\to\access.mdb"
For start in use the directory where the access.mdb is located.
-- JimFive
|
|
|