View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 6,953
Default open workbooks when opening an excel file

Private Sub Workbook_Open()
workbooks.Open "C:\MyFolder\Workbook B.xls"
End Sub

go into the VBE (alt + F11), then in the project explorer on the left,
select your workbook and double click on the ThisWorkbook entry under your
project. this should open the thisworkbook module. At the top of the
module, in the left dropdown select Workbook and in the right down select
Open.

Modify at the second line above (adjusted for your specifics).

--
Regards,
Tom Ogilvy


"jprogrammer" wrote:


I have 2 workbooks- workbook A contains a master job list and workbook b
contains employees time allocated on a job. The master job list
(workbook A) changes often so I have created a link between the 2
workbooks. I would like to create a macro that will open workbook A
when I open workbook B. I assume I would put this in the open workbook
event?


--
jprogrammer
------------------------------------------------------------------------
jprogrammer's Profile: http://www.excelforum.com/member.php...o&userid=29781
View this thread: http://www.excelforum.com/showthread...hreadid=546863