R
rmcompute
I have to import 4 tables from each of 15 branch applications for a total of
60 tables. Since it would have to be done every time I bring in data, I set
it up in VBA as follows to import the tables:
DoCmd.TransferDatabase acImport, "Microsoft Access", strPCMan, acTable,
"tblEmployees", "tblEmployees"
The only issue I have is that when I do it manually, I can connect to each
branch and click all 4 tables simultaneously, which then import quickly.
The time lost is on making the connection. When I do it in VBA, is there a
way to bring in all 4 tables at once as can be done manually ?
60 tables. Since it would have to be done every time I bring in data, I set
it up in VBA as follows to import the tables:
DoCmd.TransferDatabase acImport, "Microsoft Access", strPCMan, acTable,
"tblEmployees", "tblEmployees"
The only issue I have is that when I do it manually, I can connect to each
branch and click all 4 tables simultaneously, which then import quickly.
The time lost is on making the connection. When I do it in VBA, is there a
way to bring in all 4 tables at once as can be done manually ?