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
