paulS30berks
Registered User.
- Local time
- Today, 03:56
- Joined
- Jul 19, 2005
- Messages
- 116
I have written some code that will output to a spreadsheet in a given location:
how can I rework this code so that the excel output displays on screen rather than saving to a specified location:
Code Written:
Private Sub outputToExcel_Click()
DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel9, "C4C Period Final", "\\uk.michaelpage.local\dfs\GroupData\NSCH\Elite Database Reports\Gross Cash For Car.xls"
MsgBox "C4C Period Final Exported"
End Sub
how can I rework this code so that the excel output displays on screen rather than saving to a specified location:
Code Written:
Private Sub outputToExcel_Click()
DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel9, "C4C Period Final", "\\uk.michaelpage.local\dfs\GroupData\NSCH\Elite Database Reports\Gross Cash For Car.xls"
MsgBox "C4C Period Final Exported"
End Sub