View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Muhammed Rafeek M Muhammed Rafeek M is offline
external usenet poster
 
Posts: 179
Default Backing up folder

You can use this macro:

Dim str As String
str = "C:\Mybackup\Price" & Format(Date, "mmddyy")
MkDir (str)


"dan" wrote:

I want to backup folder "C:\Documents and Settings\dan\Price" as
"C:\MyBackup\PriceMMDDYY"
Could you help me script a Macro to do this.
Thanks