Open other another workbook

P

Pasmatos

Hi!

Please i need help.
when i open an workbook i need to automaticaly open another.

Thanks for your help.
 
B

Bob Phillips

Private Sub Workbook_Open()
Workbooks.Open Filename:="the other filename"
End Sub

'This is workbook event code.
'To input this code, right click on the Excel icon on the worksheet
'(or next to the File menu if you maximise your workbooks),
'select View Code from the menu, and paste the code


--

HTH

RP
(remove nothere from the email address if mailing direct)
 
P

Pasmatos

Thak you for your help, Bob.

Regards.
Paulo


Bob Phillips said:
Private Sub Workbook_Open()
Workbooks.Open Filename:="the other filename"
End Sub

'This is workbook event code.
'To input this code, right click on the Excel icon on the worksheet
'(or next to the File menu if you maximise your workbooks),
'select View Code from the menu, and paste the code


--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Top