Add Method
Back to Index | Table of Contents
Add a workbook and input a value in Range A1 of workbook created.
Sub AddWorkbook ()
Workbooks.Add intWorkbooksCount = Workbooks.Count Set ReportWorkbook = Workbooks(intWorkbooksCount) Set sht1 = ReportWorkbook.Worksheets(1)
sht1.Cells(1, 1) = "Welcome"
End Sub
HOME