Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sub UpdateSave()
OrigFile = ThisWorkbook.Path & "\" & ThisWorkbook.Name ThisWorkbook.SaveAs Left(ThisWorkbook.FullName, Len(ThisWorkbook.FullName) - 4) & "_old_" & Format(Date, "mmddyyyy") OldFileName = ThisWorkbook.Name Workbooks.Open fileName:=MacroPath & MacroFileName, UpdateLinks:=False, ReadOnly:=True On Error Resume Next Application.Run "'" & MacroFileName & "'" & "!ModUpdate.MacroUpDate", MacroFileName, OldFileName On Error GoTo 0 MsgBox ("Original file is saved as " & OldFileName & "." & Chr$(10)) ThisWorkbook.Save Application.DisplayAlerts = False Workbooks(MacroFileName).SaveAs fileName:=OrigFile Application.DisplayAlerts = True ThisWorkbook.Close End Sub The error msg is on this line of code Application.Run "'" & MacroFileName & "'" & "!ModUpdate.MacroUpDate", MacroFileName, OldFileName Thanks in advance. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
run time error 1004 general odbc error excel 2003 vba | Excel Programming | |||
Error when cell A1 is not active and xlInsideVertical border formatthrowing error 1004 | Excel Programming | |||
Error handling error # 1004 Run-time error | Excel Programming | |||
Run Time Error 1004: Application or Object Defined Error | Excel Programming | |||
run-time error '1004': Application-defined or object-deifined error | Excel Programming |