Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hi, I have some code to save a backup of the workbook. However, for some reason it automatically saves to My documents every time, whereas I want it to save into the same folder as the original workbook. The code I currently have is below. Could anyone tell me what I need to change to get it to save into the same directory? Sub SaveWorkbookBackup() Dim awb As Workbook, BackupFileName As String, i As Integer, OK As Boolean If TypeName(ActiveWorkbook) = "Nothing" Then Exit Sub Set awb = ActiveWorkbook If awb.Path = "" Then Application.Dialogs(xlDialogSaveAs).Show Else BackupFileName = awb.FullName i = 0 While InStr(i + 1, BackupFileName, ".") 0 i = InStr(i + 1, BackupFileName, ".") Wend If i 0 Then BackupFileName = Left(BackupFileName, i - 1) BackupFileName = "RMT" & Worksheets("Month lookups").Range("k1") & ".xls" OK = False On Error GoTo NotAbleToSave With awb Application.StatusBar = "Saving this workbook..." ..Save Application.StatusBar = "If you are still reading this you must be really bored..." ..SaveCopyAs BackupFileName OK = True End With End If NotAbleToSave: Set awb = Nothing Application.StatusBar = False If Not OK Then MsgBox "Backup Copy Not Saved!", vbExclamation, ThisWorkbook.Name End If End Sub -- krabople ------------------------------------------------------------------------ krabople's Profile: http://www.excelforum.com/member.php...o&userid=29774 View this thread: http://www.excelforum.com/showthread...hreadid=504912 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
in which folder can you save a .CSV file? | Excel Discussion (Misc queries) | |||
Need code to save file to new folder, erase from old folder | Excel Discussion (Misc queries) | |||
open file from folder save in new folder | Excel Programming | |||
"Save As" folder -- can I default this to the same folder as origi | Excel Discussion (Misc queries) | |||
Save as Default folder | Excel Discussion (Misc queries) |