C
Crownman
Hi:
I have a group of several files with a simple macro that automatically
goes to a specific worksheet at the time the file is opened. The code
is as follows:
Private Sub Workbook_Open()
Worksheets ("TITLE").Select
Range ("a1").Select
End Sub
The macro works properly when a single file is opened, but when I try
to open several of the files at the same time I get the following
error message:
Run Time Error 1004
Select method of Worksheet Class Failed
All of the files do open, but the macro appears to run on only the
first file selected. All of the other files open to the page that was
active when the file was last saved.
Can my macro be modified to eliminate this behavior?
TIA for any advice.
Crownman
I have a group of several files with a simple macro that automatically
goes to a specific worksheet at the time the file is opened. The code
is as follows:
Private Sub Workbook_Open()
Worksheets ("TITLE").Select
Range ("a1").Select
End Sub
The macro works properly when a single file is opened, but when I try
to open several of the files at the same time I get the following
error message:
Run Time Error 1004
Select method of Worksheet Class Failed
All of the files do open, but the macro appears to run on only the
first file selected. All of the other files open to the page that was
active when the file was last saved.
Can my macro be modified to eliminate this behavior?
TIA for any advice.
Crownman