SaveCopyAs macro

D

Don Guillett

Here is a backup macro that I use that should give you an idea. The key word
here is .savecopyAS

Sub Backup() 'kept in personal.xls & assigned to toolbar button
On Error GoTo BackupFile
MkDir CurDir & "\Backup"
BackupFile:
With ActiveWorkbook
MyWB = .Path & "\BACKUP\" & .Name
.SaveCopyAs MyWB
.Save
End With
End Sub
 
B

Baddad007

I have developed an Excel sheet with built-in formulas for checkin
balance figures quickly. I would like to be able to design a macro tha
would create a new copy of the spreadsheet, with current figures and
unique time-date stamp name, without changing the original copy. I hav
tried, but my original keeps changing to match my copy. Any ideas?
Thanks, (e-mail address removed)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top