Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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. I do that each time with the export to excel button available in access which generates a temp file which I have to save all the time by naming it into appropriate excel file format. So far I have managed to export only the data sheet. I'm stuck with creating the pivot table portion. These few lines I found while browsing and changed them w.r.t. my requirements. I would like to have a pivot table in sheet2 based on data range in sheet1. 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 ---------------------- Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Exporting data to Excel pivot table from Access | Excel Discussion (Misc queries) | |||
Excel form to update data from MS Access data table based on criteriain excel sheet | Excel Programming | |||
Get data from Access tables in an Excel pivot table | Excel Programming | |||
Access Create Excel Pivot Table Data Source | Excel Discussion (Misc queries) | |||
Access table exported to Excel does not preserve blank cells | Excel Programming |