Hi
I'm using this macro to save a file with a title and today's date to a specific location.
Dim newFile As String, fName As String
fName = Range("B1").Value
newFile = fName & " " & Format$(Date, "mm-dd-yyyy")
ChDir _
"X:\Common\Service Centre\End of day reports\Current Report"
ActiveWorkbook.SaveAs Filename:=newFile
However on some occasions this macro is saving to My Documents rather than the file path shown above.
Can anyone help? Thanks