
12-16-2003, 06:16 PM
|
|
Newcomer
|
|
Join Date: Dec 2003
Posts: 14
|
|
Additionally, you might like to use;
Code:
Application.SheetsInNewWorkbook = 1
Workbooks.Add
Which, as you can guess, defines how many sheets are in the new workbook. However, this change is permanent, so you might want to do something like;
Code:
CurrentNumberOfSheets = Application.SheetsInNewWorkbook
Application.SheetsInNewWorkbook = 1
Workbooks.Add
Application.SheetsInNewWorkbook = CurrentNumberOfSheets
So that you can restore that person's 'default sheets' setting. 
|
|