shg and JBeaucaire, your help is apprecaited. I am still recieving an error "Save As Method Failed." , in the Macro 1. I put the DIM declarations Outside of the CreateFolders MACRO, so that they may be used in subsequent sub macros. Please see the code below. Your help is appreciated.
Option Explicit
Dim fDate As String
Dim fPath As String
Dim Fldr As String
Dim ErrBuf As String
_________________________________
Sub CreateFolder()
fDate = Application.InputBox("Enter a date in the format shown:", "Date to add...", Format(Date, "MM_DD_YYYY"))
If fDate = "False" Then Exit Sub
fPath = "L:\"
On Error GoTo ErrorHandler
Fldr = fPath & fDate & "_157"
MkDir Fldr
Fldr = fPath & fDate & "_157\" & "157_Reports"
MkDir Fldr
Fldr = fPath & fDate & "_157\" & "Support_Summaries"
MkDir Fldr
Fldr = fPath & fDate & "_157\" & "105_Reports"
MkDir Fldr
If Len(ErrBuf) > 0 Then MsgBox "The following folders already existed:" & vbLf & vbLf & ErrBuf
Exit Sub
ErrorHandler:
ErrBuf = ErrBuf & vbLf & Fldr
Resume Next
End Sub
________________________________________
Sub Summaries()
FileCopy "L:\157_Support_Summaries\CDS.xlsm", fPath & fDate & "_157\" & "Support_Summaries\CDS.xlsm"
FileCopy "L:\157_Support_Summaries\Formulas.xlsm", fPath & fDate & "_157\" & "Support_Summaries\Formulas.xlsm"
FileCopy "L:\157_Support_Summaries\Illiquid.xlsm", fPath & fDate & "_157\" & "Support_Summaries\Illiquid.xlsm"
FileCopy "L:\157_Support_Summaries\Q.xlsm", fPath & fDate & "_157\" & "Support_Summaries\Q.xlsm"
FileCopy "L:\157_Support_Summaries\Rules.xlsm", fPath & fDate & "_157\" & "Support_Summaries\Rules.xlsm"
FileCopy "L:\157_Support_Summaries\Special_Trades.xlsm", fPath & fDate & "_157\" & "Support_Summaries\Special_Trades.xlsm"
FileCopy "L:\157_Support_Summaries\QRA_Bonds_20091231.xlsx", fPath & fDate & "_157\" & "Support_Summaries\QRA_Bonds_20091231.xlsx"
End Sub
__________________________________________
Sub Macro1()
Const sPath1 As String = "fPath & fDate & 157\ & 105_Reports"
Const sFileOut1 As String = "105_version1.xlsm"
fPath = "L:\"
Workbooks.Add
With ActiveSheet
.Name = fDate & "105_v1"
.Parent.SaveAs Filename:=sPath1 & sFileOut1, _
FileFormat:=xlOpenXMLWorkbookMacroEnabled, _
CreateBackup:=False
.Parent.Close
End With
End Sub
__________________________________________
Sub Main()
Call CreateFolder
Call Summaries
Call Macro1
End Sub
Bookmarks