Copying Data from Access to Excel in a macro

G

Guest

Hi

I've been trying to set up a macro to copy & paste data from an Access Table
to an Excel Worksheet and I cant get it to work. It fails at the
'ActiveSheet.Paste' stage shown below.

Cells.Select
ActiveSheet.Paste
ActiveWorkbook.Save
End Sub

I created the macro starting in the Excel Worksheet, then going to the
Access Table, copying it, then returning to Excel and pasting the data in the
worksheet. As you can see from the VBA, it doesnt seem to have recorded any
of the Access part of the macro.

Any suggestions where I'm going wrong?

Many thanks

GLS
 
G

Guest

I would record a macro with the following steps:

1) In excel, go to Data--Get External Data
2) Select "Import External Data"
3) Navigate to the Access db and double-click on it
4) Select the table or query which you want to import into Excel
5) Click Ok.
6) Stop the macro recorder.

Dave
 
G

Guest

Dave

Thanks - that worked great.

GLS
--
GLS


Dave F said:
I would record a macro with the following steps:

1) In excel, go to Data--Get External Data
2) Select "Import External Data"
3) Navigate to the Access db and double-click on it
4) Select the table or query which you want to import into Excel
5) Click Ok.
6) Stop the macro recorder.

Dave
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top