IMO
Now Known as ___
- Local time
- Today, 21:11
- Joined
- Sep 11, 2002
- Messages
- 723
I'm using the following code to transfer a table to an existing excel spreadsheet
The problem I'm having is, it creates a sheet called Shippiing_Details not Shipping Details. Is there something I'm doing wrong or am I just going insane? I need it to be called Shipping Details as I've created several DTS Packages that link to that page. Any help greatly apreciated
IMO
Code:
DoCmd.TransferSpreadsheet acExport, 8, "Shipping Details", "H:\BIDataLoad\Supplier Orders.xls", True, "Shipping Details"
IMO