View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Stephane Quenson Stephane Quenson is offline
external usenet poster
 
Posts: 53
Default selecting a specific excel instance

You can access an open document by using the following code:
Windows("Book2.xls").Activate ' Activate a document
Sheets("Sheet2").Select ' Select the proper sheet in that document

Stephane.