Thread: Open Excel
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Mike H Mike H is offline
external usenet poster
 
Posts: 11,501
Default Open Excel

Try:-

Sub marine()
Path = "C:\Program Files\Microsoft Office\OFFICE11\XLSTART\"
Name = "Book1.xls"
Workbooks.Open (Path & Name)
End Sub

Mike

"Jason Zischke" wrote:

Hi All

I was wondering if there is code that can open a new excel window that
allows the file I have saved in the XLSTART folder.

Jason Zischke