Hi to all,
I wonder if you can help. I have a Macro (see below) which works effectively in copying an active sheet of a temporary file into a new work book (and enables me to format and do other things within it) before opening the new workbook. This VBA is contained in a "template" (module1) that is attached to a report extracting from a database.
I have added some control buttons to my template and assigned macros to these buttons (the macros are saved in Module 2 of the template)
I added the code "ActiveWorkbook.VBProject.VBComponents("module2").Copy" into the macro (shown in italics below) - However, ever since I have made this change, I am getting a Runtime 9 error and the active sheet is no longer copied into the output workbook (but BOTH module 1 and module 2 are!)
Just wondering if anyone can give me an idea of what I am doing wrong?
Sub Auto_Open()
On Error GoTo ErrorHandler
Application.Visible = False
ThePath = ThisWorkbook.Path
Workbooks.Open Filename:=ThePath + "\ReportData.txt"
' Copy the workbook, and close the source file (having marked it as saved)
Set Wbook = ActiveWorkbook
ActiveSheet.Copy
ActiveWorkbook.VBProject.VBComponents("module2").Copy this is the code I have added!
Wbook.Saved = True
Wbook.Close
'Set ReportSheet = ActiveSheet
' Mark the active workbook as saved
ActiveWorkbook.Saved = True
'Moves the sheets into a different order.
Workbooks("ExcelList.xls").Sheets(2).Move Before:=ActiveWorkbook.Sheets(1)
Workbooks("ExcelList.xls").Sheets(2).Move Before:=ActiveWorkbook.Sheets(1)
Workbooks("ExcelList.xls").Sheets(2).Move Before:=ActiveWorkbook.Sheets(1)
'Selects and copies all the data extracted from SIMS and pastes it onto the student data sheet
Sheets("ReportData").Select
Range(Sheets("ReportData").Range("A4"), Sheets("ReportData").Range("A1").SpecialCells(xlLastCell)).Select
Selection.Copy
Sheets("student Data").Select
Range("A2").Select
Selection.PasteSpecial Paste:=xlPasteValues
'Makes all columns on student data sheet wide enough for any data used
Sheets("student Data").UsedRange.EntireRow.AutoFit
Sheets("student Data").UsedRange.EntireColumn.AutoFit
Range("A1").Select
Sheets("student data").Select
Dim r As Long
r = ActiveSheet.Range("A1").End(xlDown).Row
Range("l2:s2").Select
Selection.AutoFill Destination:=Range("l2:s" & r)
Sheets("Workings").Visible = False
Sheets("Analysis").Select
Range("A1").Select
Application.DisplayAlerts = False
Worksheets("ReportData").Delete
Application.DisplayAlerts = True
Application.Calculation = xlCalculationAutomatic
Application.Visible = True
Workbooks("ExcelList.xls").Saved = True
Workbooks("ExcelList.xls").Close
Exit Sub
' Error-handling routine
ErrorHandler:
Application.Visible = True
MsgBox "Error " & Err.Number & " : " & Err.Description
End Sub
Bookmarks