Be the first user to complete this post

  • 0
Add to List

VBA-Excel: Open a Excel WorkBook

Using VBA (Visual Basic for Applications) , you can open Excel workbook at the runtime by using Open() method.

You have to provide the Complete Path along with the name of the Excel you want to open, it will return the object of that excel which you can use later to perform operations on it.

Function FnOpenWorkBook()

    Dim objWorkBook As Workbook

    Set objWorkBook = Workbooks.Open("C:\New folder\NewOpenBook.xlsx")

     objWorkBook.Sheets("Sheet1").Range("A1").Value = 5

End Function



Also Read:

  1. VBA-Excel: SUDOKU Solver
  2. VBA-Excel: Delete Blank Rows from Excel Work Sheet
  3. VBA-Excel: Add Worksheets For All The Given Dates Except Weekends and Copy The Common Template In Each Worksheet
  4. Excel-VBA : Prevent Adding New Worksheet
  5. VBA-Excel: Create worksheets with Names in Specific Format/Pattern.
  6. Excel-VBA : Prevent Changing the WorkSheet Name
  7. Excel-VBA : Change Passwords for all the WorkSheets in one shot