Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Import Excel to Access through Coding

Status
Not open for further replies.

raccess

Programmer
Dec 31, 2002
91
0
0
US
Hi,

Here is scenario,

Everyday on user request program will import specific excel file in to access table.

How i can do this?

Currently a Keyword search criterion is off on this forum that’s why i post this question.

Thanks,

Raccess
 
Use the TransferSpreadsheet method. Your help file has all the details.
Here's the example they give

DoCmd.TransferSpreadsheet acImport, 3, _
"Employees","C:\Lotus\Newemps.wk3", True, "A1:G12"
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top