Thread: Excel files
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
StumpedAgain StumpedAgain is offline
external usenet poster
 
Posts: 192
Default Excel files

Sub Open()

Workbooks.Open Filename:="File Path here such as C:\MyDocuments\File.xls"

End Sub

You can then call information from the open file.

"ranswrt" wrote:

I have two excel files. How do I write a procedure in one file that will
open the other file and be able to access the data in that file?
Thanks