CoffeeGuru
Registered User.
- Local time
- Today, 21:05
- Joined
- Jun 20, 2013
- Messages
- 121
I have a report that I want to export to Excel
however it is generally around 100K lines
The reaqson for Excel is the pivot table and cahrt capabilities that Access does not do so well.
Due to th efile size I cannot use the normal Excel Export as it truncates at 65535 rows
I have added the following in Module1 VBA
how on earth do I get the code to run in a macro
I have tried:
ACTION: RunCode
Function Name: ExportCSV
But it does not work, Am I missing something obvious?
however it is generally around 100K lines
The reaqson for Excel is the pivot table and cahrt capabilities that Access does not do so well.
Due to th efile size I cannot use the normal Excel Export as it truncates at 65535 rows
I have added the following in Module1 VBA
Code:
Sub ExportCSV()
DoCmd.TransferText acExportDelim, , "R10 - Management Report", "O:\emd\Consumer Products\Category Management\CM Reports\R10 - Management Report.txt", True
End Sub
how on earth do I get the code to run in a macro
I have tried:
ACTION: RunCode
Function Name: ExportCSV
But it does not work, Am I missing something obvious?