Hi guys,
I have code that exports data from Access to Excell and it works fine untile I try to save the resulting open spread sheet to a specific directory. No matter what I try it save to My Documents. I even tried the ChDir command and that did not work either. Can anyone suggest the correct way to change the path so that I can save the workbook? See the red line of code below. This is where I am getting hosed.
I have code that exports data from Access to Excell and it works fine untile I try to save the resulting open spread sheet to a specific directory. No matter what I try it save to My Documents. I even tried the ChDir command and that did not work either. Can anyone suggest the correct way to change the path so that I can save the workbook? See the red line of code below. This is where I am getting hosed.
Code:
Private Sub subTransferDataToExcel()
On Error Resume Next
Dim sCriteria As String
Dim db As Database
Dim rst As Recordset
Dim objApp As Excel.Application
Dim objBook As Excel.Workbook
Dim objSheet As Excel.Worksheet
Dim strTemplatePath As String
Dim newFile As String
Dim fDt As String
Dim strSavePath As String
.
.
.
.
With objSheet
.Select
'Clears the current contents in the workbook range
.Range("C16:D22").ClearContents
'rst Copies the recordset into the worksheet
.Range("C16").CopyFromRecordset rst
End With
rst.Close
objApp.Visible = True
'Saves filename with the date value in C22
fDt = Range("C22").Value
'Change the date format
newFile = "time sheet" & Format$(fDt, "mmddyyyy")
' Where to save the new workbook
[COLOR=red]strSavePath = "\\bigguy\users\Dom_F\Excel\TimeSheets"[/color]
' ChDir "\\bigguy\users\Dom_F\Excel\TimeSheets"
ActiveWorkbook.SaveAs FileName:=newFile
Set rst = Nothing
Set db = Nothing
Set objSheet = Nothing
Set objBook = Nothing
Set objApp = Nothing
End Sub