Export Access pivot table to Excel - VBA solution

A

Angela

Hi,


I am looking for a fix in below code, probably addition to it.
I'm trying to export a query from ACCESS 2003 to EXCEL 2003.
Default out put format of query is pivot table.
I want to export same to excel. I do that each time with the export
button which generates a temp file which I have to save all the time
by naming it.

So far I have managed to export only the data sheet.
I'm stuck with the pivot table portion.

These few lines I found while browsing and changed them w.r.t. my
requirements.

Code is below:
----------------------
Public Sub TransferReport()

Dim varFileName As String

varFileName = "C:\MyFile.xls"

'EXPORT DATA
DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel9, "Month
End Report", varFileName, False, "Sheet1"

End Sub
 

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