I've been trying to save files on to my Share Drive but I'm getting a run-time 1004 error.
For context, I'm working freelance with an anization using my personal Outlook account and part of my role involves saving and interacting with other files within the company's Share Drive using macros in a workbook within this Share Drive. However, having tried multiple strategies, I'm still unable to perform simple macros. An example below was taken directly from the Microsoft Community website which should save the current file into the current folder. However, it triggers a Run-Time 1004 error instead:
My 'Home' string is formatted like: /:f:/r/sites/GroupDrive/AdSales/Pricing%20Calculator?csf=1&web=1&e=YLfIPX......
Sub MakeBackup()
Dim Home As String
Dim HomePath As String
Dim BackupPath As String
Home = ThisWorkbook.Path
HomePath = Home & "/myfile.xlsm"
On Error GoTo ErrorHandler
'Save this file to the current folder and the new file to a new location
ActiveWorkbook.SaveAs fileName:=HomePath, FileFormat:=xlOpenXMLWorkbookMacroEnabled
ErrorHandler:
MsgBox "Error " & Err.Number & ": " & Err.Description, vbCritical, "Save Error"
End
End Sub
Any support / suggestions would be greatly appreciated.
I've been trying to save files on to my Share Drive but I'm getting a run-time 1004 error.
For context, I'm working freelance with an anization using my personal Outlook account and part of my role involves saving and interacting with other files within the company's Share Drive using macros in a workbook within this Share Drive. However, having tried multiple strategies, I'm still unable to perform simple macros. An example below was taken directly from the Microsoft Community website which should save the current file into the current folder. However, it triggers a Run-Time 1004 error instead:
My 'Home' string is formatted like: https://skynz.sharepoint/:f:/r/sites/GroupDrive/AdSales/Pricing%20Calculator?csf=1&web=1&e=YLfIPX......
Sub MakeBackup()
Dim Home As String
Dim HomePath As String
Dim BackupPath As String
Home = ThisWorkbook.Path
HomePath = Home & "/myfile.xlsm"
On Error GoTo ErrorHandler
'Save this file to the current folder and the new file to a new location
ActiveWorkbook.SaveAs fileName:=HomePath, FileFormat:=xlOpenXMLWorkbookMacroEnabled
ErrorHandler:
MsgBox "Error " & Err.Number & ": " & Err.Description, vbCritical, "Save Error"
End
End Sub
Any support / suggestions would be greatly appreciated.
Share Improve this question edited Apr 1 at 17:49 Tim Williams 167k8 gold badges100 silver badges141 bronze badges asked Apr 1 at 12:20 Danny O'SullivanDanny O'Sullivan 11 bronze badge New contributor Danny O'Sullivan is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code of Conduct. 3 |1 Answer
Reset to default -1I haven't learned much about this because I am still learning this, but it's probably due to file permissions, network connectivity, security settings, or Excel add-ins.
As said in the "Excel Macro-Enabled Workbook won't Save to a Network Folder" question the Microsoft Forums, it could be a Windows side issue.
Based on the network error messages you mentioned, it may be a Windows side issue as well. I suggest you try the following to see if you can save the file successfully.
1. Map the shared folder as a network drive and drag the affected macro-enabled file.
2. Run the Windows robocopy commands to transfer and save the file.
If none works, then try creating a new workbook and copy your macro code to it and then try saving it to the shared drive.
:f/r/
for example and remove the querystring part (everything after ?) So more likehttps://skynz.sharepoint/sites/GroupDrive/AdSales/Pricing%20Calculator/myFile.xlsm
– Tim Williams Commented Apr 1 at 17:48