SaveCopyAs runtime error

rudfaden

New Member
Joined
Feb 5, 2011
Messages
48
When i use the following code in Excel 2011 for Mac i get runtime Error 1004.

Does anyone have an idea to fix it?

Code:
Private Sub Workbook_BeforeClose(Cancel As Boolean)
Dim Msg As String
Dim Ans As Integer
Dim FName As String
Msg = “Would you like to make a backup of this file?”
Ans = MsgBox(Msg, vbYesNo)
If Ans = vbYes Then
FName = "Rud's HD:Users:RudVFaden:Backup:” & ThisWorkbook.Name
ThisWorkbook.SaveCopyAs FName
End If
End Sub
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Is it really the case that colons ( : ) are supposed to be there, and not the folder separation character " / " ?? If not, please clue us in as to which line is the offending code.
 
Upvote 0
Hi.

Thanks for your fast reply. I think semicolon is the right thing to use. At least this is what i was able find on the web. It also works fine with the FileLen function.

The error i cused by the line
Code:
ThisWorkbook.SaveCopyAs FName
 
Upvote 0

Forum statistics

Threads
1,215,219
Messages
6,123,687
Members
449,117
Latest member
Aaagu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top