Hi
I am trying to get a master purchase order sheet to copy and rename a set of folders and files contained within to a central location.
The folders are in the 'Standard Documents Folder' and I am wanting these to copy to the main 'Contract' Folder on the server (at the minute I'm using a test folder 'Test').
The code I have below so far is:
Option Explicit
Sub Copy_Folder()
'This example copy all files and subfolders from FromPath to ToPath.
'Note: If ToPath already exist it will overwrite existing files in this folder
'if ToPath not exist it will be made for you.
Dim FSO As Object
Dim FromPath As String
Dim ToPath As String
Dim wkb As Object
FromPath = "K:\APPS\Standard Document Files\Contracts\New Contract Folder" '<< Change
ToPath = "K:\APPS\CONTRACT\Test\" & Range("A3") & " " & Range("A5") '<< Change
wkb.SaveAs Filename:="K:\APPS\CONTRACT\Test\" & Range("A3") & " " & Range("A5") & "\Purchase Order" & Range("A3") & "Purchase Order" & ".xlsb"
If Right(FromPath, 1) = "\" Then
FromPath = Left(FromPath, Len(FromPath) - 1)
End If
If Right(ToPath, 1) = "\" Then
ToPath = Left(ToPath, Len(ToPath) - 1)
End If
Set FSO = CreateObject("scripting.filesystemobject")
If FSO.FolderExists(FromPath) = False Then
MsgBox FromPath & " doesn't exist"
Exit Sub
End If
FSO.CopyFolder Source:=FromPath, Destination:=ToPath
MsgBox "You can find the files and subfolders from " & FromPath & " in " & ToPath
End Sub
I am getting the error "Object Variable or With Block Variable not set" on the following code:
wkb.SaveAs Filename:="K:\APPS\CONTRACT\Test\" & Range("A3") & " " & Range("A5") & "\Purchase Order" & Range("A3") & "Purchase Order" & ".xlsb"
Can anyone see why?
My next query when I can get this one sorted is to have the other excel files that are already on the copied files to be renamed in the same way (contract number etc, so RAMS would become C12345 RAMS etc).
What would be the best way to do this?
Kieran
Bookmarks