vba - How to opening a file (*.doc *.xls)

  • Thread starter Thread starter Murray Outtrim
  • Start date Start date
M

Murray Outtrim

Is there away of opening another document using a macro?
I want to create a button that will open an existing file.
I also want the macro to select select a specific sheet with in th
file
 
Murray,

Dim oWb As Workbook

Set oWb = Workbooks.Open Filename:="c:\My Documents\MyFile.xls"
oWb.Worksheets(1).Activate

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

Murray Outtrim said:
Is there away of opening another document using a macro?
I want to create a button that will open an existing file.
I also want the macro to select select a specific sheet with in the
file.


------------------------------------------------



~~Now Available: Financial Statements.xls, a step by step guide to
creating financial statements
 
Back
Top