Get work book from same directory : Workbook File « Excel « VBA / Excel / Access / Word

Home
VBA / Excel / Access / Word
1.Access
2.Application
3.Data Type
4.Data Type Functions
5.Date Functions
6.Excel
7.File Path
8.Forms
9.Language Basics
10.Math Functions
11.Outlook
12.PowerPoint
13.String Functions
14.Windows API
15.Word
16.XML
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
VBA / Excel / Access / Word » Excel » Workbook File 
Get work book from same directory
 
Sub ActivateWorkbook2()
   Dim stPath As String
   Dim myFileName As String
   Dim stFullName As String
   Dim myWorkbook As workBook

   myFileName = "SalesData1.xls"
   stPath = ThisWorkbook.Path
   stFullName = stPath & "\" & myFileName
   Set myWorkbook = Workbooks.Open(Filename:=stFullName)
End Sub

 
Related examples in the same category
1.Is selected file open?
2.Open Workbook file (xls file)
3.Get path of current work book
4.Save as the active workbook
5.Get next file name
6.Open a text file for workbook
7.Get active workbook name only(without path name)
8.Load excel file
9.Presents user with a GetOpenFileName dialog that allows multiple file selection.
10.tells you how many workbooks are open
11.Save changes automatically, specify this as a parameter of the Close method
java2s.com  |  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.