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!

Export Access record into Excel

Status
Not open for further replies.

Marko24

Technical User
Jul 22, 2003
5
0
0
CA
How do I export Access record (in DAO) into an Excel worksheet?

Does anyone have an sample code for exporting a record into a Excel worksheet? I have no idea how to do this. Can anyone help?
 
Hi Marko,

try this,

DoCmd.OutputTo acOutputTable, "mytest", acFormatXLS, CurrentProject.Path & "\mytestfile.xls"



Hope this helps... :)
Hasu
(Trust on someone, someone will trust you!)
 
I have tried that before, but this method exports the whole table into the excel. I only would like to export a selected number of fields from a selected (bookmarked) record into excel.

 
Hey Marko,

You can create a Make-Table query to move selected records, this will create temp table and you can specify nos of fields, criteria in where clause.

after creating query use below code to run and export into excel.

DoCmd.SetWarnings (False)
DoCmd.OpenQuery "qrySelectedRecords"
DoCmd.OutputTo acOutputTable, "tblTest", acFormatXLS, CurrentProject.Path & "\mytestfile.xls"
DoCmd.DeleteObject acTable, "tblTest"
DoCmd.SetWarnings (True)



Hope this helps... :)
Hasu
(Trust on someone, someone will trust you!)
 
You can do this from Excel:

' RS is recordset filled with data from a query
numRecs = activesheet.range("a1").CopyFromRecordset(RS)
' must catch return value or doesn't work
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top