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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

transferring data into access from excel

Status
Not open for further replies.

SteveCarrier

Programmer
Aug 6, 2002
34
CA
Hello

This is a very generic post but I was wondering if anyone had experience with transferring data from excel into access. I know that it can be done from the VBA code by referencing the different cells but maybe there is some resources to follow on a web site.

Thanks in advance.

Steve Carrier
 
Here is one way to do it I have used before sorry dont know any other web resources.

DoCmd.TransferSpreadsheet acImport, AcSpreadsheetType9, "tblTest", strFullName, True, strRange

You can also specific cells to import through strRange.

Hope this is of some use
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top