Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Could someone please help me with a macro? I am a complete novice at it.

I want the macro to save my excel file but to check first if a file with the same name already exists or not. If yes, then macro to save the file with a version after. For eg if Testworkbook.xls already exists, then macro to save the new file as Testworkbook_v1.xls and so on. Below is the code that I tried but its giving an error.

Sub SaveAs()
'
' SaveAs Macro

    ChDir "C:\Documents and Settings\Sae\Desktop"
    ActiveWorkbook.SaveAs Filename:= _
        "C:\Documents and Settings\Sae\Testworkbook" & v + 1 & ".xlsx", _
        FileFormat:=xlOpenXMLWorkbook, CreateBackup:=False

End Sub

Any and every help will be greatly appreciated.

Many Thanks Sae

share|improve this question
Have you tried anything thus far? – jonsca Jun 23 '11 at 12:55
I have tried to record a macro but it doesn't seem fit for the purpose – Sae Jun 23 '11 at 13:00
Please see my edit – jonsca Jun 23 '11 at 17:13

2 Answers

This code will work whenever you save the workbook.

Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
    Dim filePath As String, wbName As String, version As Integer

    filePath = "C:\Documents and Settings\Sae\Desktop" //Change as appropriate
    wbName = "Testworkbook - v"

    If Dir(filePath & Application.PathSeparator & ThisWorkbook.Name) = "" Then // Workbook does not exist
        ThisWorkbook.SaveAs fileName:=filePath & Application.PathSeparator & wbName & 1
    Else
        version = CInt(VBA.Right$(VBA.Left$(ThisWorkbook.Name, Len(ThisWorkbook.Name) - 4), VBA.Len(VBA.Left$(ThisWorkbook.Name, Len(ThisWorkbook.Name) - 4)) - Len(wbName))) + 1
        ThisWorkbook.SaveAs fileName:=filePath & Application.PathSeparator & wbName & version
    End If
End Sub

Note that this assumes that .xls is the file extension

share|improve this answer
how would you change it to save as .xlsm? – BiGXERO Jun 8 '12 at 1:14
1  
In the SaveAs method specify the file format using fileformat:=52. Note that 52 is the defined constant for xlOpenXMLWorkbookMacroEnabled in Excel 2007+ – Alex P Jun 8 '12 at 8:00
Excellent! Rather frustrating writing a macro that automatically deletes all code from itself @.@ – BiGXERO Jun 11 '12 at 22:27

Dir() will help you determine if a file exists already.

Workbook.SaveAs() will help you save the file out.

You'll need to concatenate your strings together with the & operator (to add on the V1).

Edit:

Thanks for posting what you have. I came up with

Sub SaveNumberedFile()

    Static count As Integer
    Dim filestr As String
    filestr = "C:\Users\Me\Documents\Code\TestWkbk"
    ThisWorkbook.Activate 'Activate whichever workbook you need
    If count = 0 Then
        ActiveWorkbook.SaveAs (filestr & ".xls")

    ElseIf count > 0 And Dir(filestr & "v" & count - 1 & ".xls") = "" Then
        ActiveWorkbook.SaveAs (filestr & "v" & count & ".xls")
    End If

    count = count + 1

End Sub

I used a static variable to keep track of the numbers. This will retain the value of count between calls to the macro. It will not keep track of count after you close the workbook. In that situation, you can check to see what the last file number was using the Dir() command, and initialize the static variable to that value.

I did not add all of the frills to the SaveAs command, but you seem to know which ones you need.

Try it out, it may need some tweaking.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.