VBA to save active workbook with new name and, if already exists, add version nr

Kra

Board Regular
Joined
Jul 4, 2022
Messages
160
Office Version
  1. 365
Platform
  1. Windows
Hi all,

I am using macro to save active workbook in specific folder. String from input box is inserted in front of original workbook name. Now it works great, but some users started to save same file multiple times and I need to adjust it to create new version instead.

When they save it with "Test" string in input box it goes like:
Test OriginalName.xlsx
Test Test OriginalName.xlsx

but it should create Test OriginalName v2.xlsx instead.

Any ideas how to improve it?

VBA Code:
Private Sub CommandButton13_Click()


On Error GoTo Err

    Dim NewName As String
        NewName = InputBox("Insert Number", "Change file's name")
        
    Dim CurrentName As String
        CurrentName = ActiveWorkbook.Name
    
    Dim ws As Workbook
    Set ws = ActiveWorkbook
    
    If ActiveWorkbook.Name Like "Book*" Then
        ws.SaveAs "C:\General\" & NewName
    
    Else
    
    ws.SaveAs "C:\General\" & NewName & " " & CurrentName
    
    End If
    
Err:

Unload Me

End Sub
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Hi kra,

I wonder why you Unload an UserForm at the end but utilize an Inputbox to get the information for the new part of the name.

VBA Code:
Private Sub CommandButton13_Click()

  Dim strNew As String
  Dim strCurrent As String
  Dim ws As Workbook
  Dim lngNr As Long
  Dim strTempName As String
  
  Const cstrExt As String = ".xlsx"
  Const cstrPath As String = "C:\General\"

On Error GoTo Err

  Set ws = ActiveWorkbook
  strNew = InputBox("Insert Number", "Change file's name")
  
  strCurrent = Left(ws.Name, InStr(1, ws.Name, ".") - 1)
  lngNr = 1
  
  If strCurrent Like "Book*" Then
    ws.SaveAs cstrPath & strNew & " " & strCurrent & ".xlsx", FileFormat:=51
  Else
    If InStr(1, strCurrent, strNew) > 0 Then
     strTempName = cstrPath & strCurrent & ".xlsx"
     Do While Len(Dir(strTempName)) > 0
        lngNr = lngNr + 1
        strTempName = cstrPath & strCurrent & " v" & lngNr & ".xlsx"
      Loop
    Else
      strTempName = cstrPath & strNew & " " & strCurrent & ".xlsx"
    End If
    ws.SaveAs strTempName, FileFormat:=51
  End If
  
Err:

  Unload Me

End Sub

Ciao,
Holger
 
Upvote 0
Hi kra,

I wonder why you Unload an UserForm at the end but utilize an Inputbox to get the information for the new part of the name.

VBA Code:
Private Sub CommandButton13_Click()

  Dim strNew As String
  Dim strCurrent As String
  Dim ws As Workbook
  Dim lngNr As Long
  Dim strTempName As String
 
  Const cstrExt As String = ".xlsx"
  Const cstrPath As String = "C:\General\"

On Error GoTo Err

  Set ws = ActiveWorkbook
  strNew = InputBox("Insert Number", "Change file's name")
 
  strCurrent = Left(ws.Name, InStr(1, ws.Name, ".") - 1)
  lngNr = 1
 
  If strCurrent Like "Book*" Then
    ws.SaveAs cstrPath & strNew & " " & strCurrent & ".xlsx", FileFormat:=51
  Else
    If InStr(1, strCurrent, strNew) > 0 Then
     strTempName = cstrPath & strCurrent & ".xlsx"
     Do While Len(Dir(strTempName)) > 0
        lngNr = lngNr + 1
        strTempName = cstrPath & strCurrent & " v" & lngNr & ".xlsx"
      Loop
    Else
      strTempName = cstrPath & strNew & " " & strCurrent & ".xlsx"
    End If
    ws.SaveAs strTempName, FileFormat:=51
  End If
 
Err:

  Unload Me

End Sub

Ciao,
Holger
Hi Holger,

Thank you!

About Unload me - button is located in user form.

I am running into two issues:

1. Line
strCurrent = Left(ws.Name, InStr(1, ws.Name, ".") - 1)

returns Invalid procedure error when workbook is not saved yet.

2. It creates new versions perfectly when I run macro only once and close workbook.
When I run it more than once without saving and closing workbook it will save it as:
1673964011501.png
 
Upvote 0
Hi kra,

sorry I missed that, There still may be a problem when you have a workbook that has not been saved before: do you want to save it with a name from the user or use a fixed one? And you would need to check if that file already exists. I suggest you have a look at Application.Dialogs(xlDialogSaveAs) or Application.GetSaveAsFilename which do a better job in my view as an InputBox.

VBA Code:
Private Sub CommandButton13_Click()

  Dim strNew As String
  Dim strCurrent As String
  Dim ws As Workbook
  Dim lngNr As Long
  Dim strTempName As String
  Dim strNameOnly As String
  
  Const cstrExt As String = ".xlsx"
  Const cstrPath As String = "C:\General\"

On Error GoTo Err

  Set ws = ActiveWorkbook
  
  strNew = InputBox("Insert Number", "Change file's name")
  If StrPtr(strNew) = 0 Then
    Exit Sub
  ElseIf Len(strNew) = 0 Then
    MsgBox "You did not enter a value! Exit procedure", , "no value"
    Exit Sub
  End If
  
  If ws.Path = "" Then
    'workbook has not been saved,
    ws.SaveAs cstrPath & "Book2Save" & cstrExt, FileFormat:=51
  Else
    strCurrent = Left(ws.Name, InStr(1, ws.Name, ".") - 1)
    If InStr(1, strCurrent, " v") > 0 Then
      strNameOnly = Left(strCurrent, InStrRev(strCurrent, " ") - 1)
      lngNr = Mid(strCurrent, InStrRev(strCurrent, " ") + 2)
    Else
      strNameOnly = strCurrent
      lngNr = 1
    End If
    
    If strCurrent Like "Book*" Then
      ws.SaveAs cstrPath & strNew & " " & strCurrent & ".xlsx", FileFormat:=51
    Else
      If InStr(1, strCurrent, strNew) > 0 Then
       strTempName = cstrPath & strNameOnly & ".xlsx"
       Do While Len(Dir(strTempName)) > 0
          lngNr = lngNr + 1
          strTempName = cstrPath & strNameOnly & " v" & lngNr & ".xlsx"
        Loop
      Else
        strTempName = cstrPath & strNew & " " & strNameOnly & ".xlsx"
      End If
      ws.SaveAs strTempName, FileFormat:=51
    End If
  End If
Err:

  Unload Me

End Sub

Holger
 
Upvote 0

Forum statistics

Threads
1,214,812
Messages
6,121,699
Members
449,048
Latest member
81jamesacct

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